aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/proto
diff options
context:
space:
mode:
authorGravatar Sree Kuchibhotla <sreek@google.com>2016-04-05 09:59:05 -0700
committerGravatar Sree Kuchibhotla <sreek@google.com>2016-04-05 10:02:07 -0700
commit27137fbc85603afdac32543c91cd5128d936f6ba (patch)
tree510fcbbb634915fff2b7d58b734d44e556fef1ec /src/proto
parent1b7c0a2c5cf27d7a77d9c3476fe6406a98ca3d76 (diff)
Fix a typo in metrics.proto. No code is using double_value yet and hence no other code changes are needed
Diffstat (limited to 'src/proto')
-rw-r--r--src/proto/grpc/testing/metrics.proto4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/proto/grpc/testing/metrics.proto b/src/proto/grpc/testing/metrics.proto
index 0cc4b60239..1202b20b8f 100644
--- a/src/proto/grpc/testing/metrics.proto
+++ b/src/proto/grpc/testing/metrics.proto
@@ -1,4 +1,4 @@
-// Copyright 2015, Google Inc.
+// Copyright 2015-2016, Google Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
@@ -42,7 +42,7 @@ message GaugeResponse {
string name = 1;
oneof value {
int64 long_value = 2;
- double double_vale = 3;
+ double double_value = 3;
string string_value = 4;
}
}