Update grpc-start.md (#15449)

pull/15462/head 96961
James Newton-King 2019-11-02 16:16:07 +13:00 committed by Rick Anderson
parent cb10474d74
commit 72c87262fa
1 changed files with 2 additions and 2 deletions

View File

@ -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)]