From 1c2a363e0f197edcd34facbf608342f6d720f0a8 Mon Sep 17 00:00:00 2001 From: Scott Addie <10702007+scottaddie@users.noreply.github.com> Date: Mon, 15 Jul 2019 16:31:32 -0500 Subject: [PATCH] HelloResponse --> HelloReply --- aspnetcore/grpc/basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/grpc/basics.md b/aspnetcore/grpc/basics.md index fd75a7102d..07e2c2d913 100644 --- a/aspnetcore/grpc/basics.md +++ b/aspnetcore/grpc/basics.md @@ -24,7 +24,7 @@ For example, consider the *greet.proto* file used in [Get started with gRPC serv * Defines a `Greeter` service. * The `Greeter` service defines a `SayHello` call. -* `SayHello` sends a `HelloRequest` message and receives a `HelloResponse` message: +* `SayHello` sends a `HelloRequest` message and receives a `HelloReply` message: [!code-protobuf[](~/tutorials//grpc/grpc-start/sample/GrpcGreeter/Protos/greet.proto)]