Remove unnecessary curly braces from gRPC service definition (#12296)
This commit is contained in:
parent
9c19577d49
commit
ee9ac351f3
|
|
@ -7,7 +7,7 @@ package Greet;
|
|||
// The greeting service definition.
|
||||
service Greeter {
|
||||
// Sends a greeting
|
||||
rpc SayHello (HelloRequest) returns (HelloReply) {};
|
||||
rpc SayHello (HelloRequest) returns (HelloReply);
|
||||
}
|
||||
|
||||
// The request message containing the user's name.
|
||||
|
|
|
|||
Loading…
Reference in New Issue