Remove unnecessary curly braces from gRPC service definition (#12296)

This commit is contained in:
James Newton-King 2019-07-19 11:03:54 +12:00 committed by GitHub
parent 9c19577d49
commit ee9ac351f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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.