Add semicolon to gRPC service definition for consistency (#12241)

This commit is contained in:
Scott Addie 2019-07-16 17:54:28 -05:00 committed by James Newton-King
parent cf3c2ba02b
commit d668e77e9e
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.