diff --git a/proto/http/http.proto b/proto/http/http.proto index bb281cb6f647..614a231436bd 100644 --- a/proto/http/http.proto +++ b/proto/http/http.proto @@ -45,14 +45,14 @@ message Userinfo { string username = 1; // password is the password for the user string password = 2; - // password_set is a boolean which is true if the passord is set + // password_set is a boolean which is true if the password is set bool password_set = 3; } message Element { // key is a element key in a key value pair string key = 1; - // values are a list of strings coresponding to the key + // values are a list of strings corresponding to the key repeated string values = 2; } diff --git a/proto/pb/http/http.pb.go b/proto/pb/http/http.pb.go index dc2d8c8ebc06..528eae338fe6 100644 --- a/proto/pb/http/http.pb.go +++ b/proto/pb/http/http.pb.go @@ -152,7 +152,7 @@ type Userinfo struct { Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"` // password is the password for the user Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"` - // password_set is a boolean which is true if the passord is set + // password_set is a boolean which is true if the password is set PasswordSet bool `protobuf:"varint,3,opt,name=password_set,json=passwordSet,proto3" json:"password_set,omitempty"` } @@ -216,7 +216,7 @@ type Element struct { // key is a element key in a key value pair Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` - // values are a list of strings coresponding to the key + // values are a list of strings corresponding to the key Values []string `protobuf:"bytes,2,rep,name=values,proto3" json:"values,omitempty"` }