From 75d9ff80642cf58aae5db382203217a23d38341f Mon Sep 17 00:00:00 2001 From: James Newton-King Date: Thu, 13 Feb 2020 09:43:37 +1300 Subject: [PATCH] Fix gRPC typo (#16984) --- aspnetcore/grpc/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/grpc/index.md b/aspnetcore/grpc/index.md index 362ee275d2..c573d59497 100644 --- a/aspnetcore/grpc/index.md +++ b/aspnetcore/grpc/index.md @@ -105,7 +105,7 @@ gRPC clients are concrete client types that are [generated from *\*.proto* files var channel = GrpcChannel.ForAddress("https://localhost:5001"); var client = new Greeter.GreeterClient(channel); -var response = await client.SayHello( +var response = await client.SayHelloAsync( new HelloRequest { Name = "World" }); Console.WriteLine(response.Message);