Skip to content

Commit 75d9ff8

Browse files
authored
Fix gRPC typo (dotnet#16984)
1 parent 4ea3578 commit 75d9ff8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

aspnetcore/grpc/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ gRPC clients are concrete client types that are [generated from *\*.proto* files
105105
var channel = GrpcChannel.ForAddress("https://localhost:5001");
106106
var client = new Greeter.GreeterClient(channel);
107107

108-
var response = await client.SayHello(
108+
var response = await client.SayHelloAsync(
109109
new HelloRequest { Name = "World" });
110110

111111
Console.WriteLine(response.Message);

0 commit comments

Comments
 (0)