From d92f5529c5220649b93bb88642c36fdbe7f83306 Mon Sep 17 00:00:00 2001 From: Alec Thilenius Date: Sat, 29 Apr 2023 10:21:06 -0700 Subject: [PATCH] Minor fix in README --- README.md | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 8c594d5..c5683a4 100644 --- a/README.md +++ b/README.md @@ -66,18 +66,14 @@ Start by creating the obligatory 'hello world' proto service definition. ```protobuf syntax = "proto3"; -package hello_world; +package hello; -message HelloRequest { - string name = 1; -} +message HelloRequest { string name = 1; } -message HelloResponse { - string message = 1; -} +message HelloResponse { string message = 1; } service HelloWorldService { - rpc SayHello(HelloRequest) returns (HelloResponse) {} + rpc SayHello(HelloRequest) returns (HelloResponse) {} } ```