From 72c87262fa1972df97da9100df8664a50b64aca0 Mon Sep 17 00:00:00 2001 From: James Newton-King Date: Sat, 2 Nov 2019 16:16:07 +1300 Subject: [PATCH] Update grpc-start.md (#15449) --- aspnetcore/tutorials/grpc/grpc-start.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnetcore/tutorials/grpc/grpc-start.md b/aspnetcore/tutorials/grpc/grpc-start.md index b991c1abd1..cc1066b071 100644 --- a/aspnetcore/tutorials/grpc/grpc-start.md +++ b/aspnetcore/tutorials/grpc/grpc-start.md @@ -249,8 +249,8 @@ Update the gRPC client *Program.cs* file with the following code: The Greeter client is created by: -* Instantiating an `HttpClient` containing the information for creating the connection to the gRPC service. -* Using the `HttpClient` to construct a gRPC channel and the Greeter client: +* Instantiating a `GrpcChannel` containing the information for creating the connection to the gRPC service. +* Using the `GrpcChannel` to construct the Greeter client: [!code-csharp[](~/tutorials/grpc/grpc-start/sample/GrpcGreeterClient/Program.cs?name=snippet&highlight=3-5)]