diff --git a/spring-grpc-docs/src/main/antora/modules/ROOT/pages/getting-started.adoc b/spring-grpc-docs/src/main/antora/modules/ROOT/pages/getting-started.adoc index b2ec7dc..fe4fc70 100644 --- a/spring-grpc-docs/src/main/antora/modules/ROOT/pages/getting-started.adoc +++ b/spring-grpc-docs/src/main/antora/modules/ROOT/pages/getting-started.adoc @@ -24,8 +24,7 @@ option java_outer_classname = "HelloWorldProto"; // The greeting service definition. service Simple { // Sends a greeting - rpc SayHello (HelloRequest) returns (HelloReply) { - } + rpc SayHello(HelloRequest) returns (HelloReply) {} rpc StreamHello(HelloRequest) returns (stream HelloReply) {} }