Skip to content
Snippets Groups Projects
Commit 27137fbc authored by Sree Kuchibhotla's avatar Sree Kuchibhotla
Browse files

Fix a typo in metrics.proto. No code is using double_value yet and hence no...

Fix a typo in metrics.proto. No code is using double_value yet and hence no other code changes are needed
parent 1b7c0a2c
No related branches found
No related tags found
No related merge requests found
// Copyright 2015, Google Inc. // Copyright 2015-2016, Google Inc.
// All rights reserved. // All rights reserved.
// //
// Redistribution and use in source and binary forms, with or without // Redistribution and use in source and binary forms, with or without
...@@ -42,7 +42,7 @@ message GaugeResponse { ...@@ -42,7 +42,7 @@ message GaugeResponse {
string name = 1; string name = 1;
oneof value { oneof value {
int64 long_value = 2; int64 long_value = 2;
double double_vale = 3; double double_value = 3;
string string_value = 4; string string_value = 4;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment