Skip to content

Commit

Permalink
Update services.md (dotnet#22650)
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesNK authored Jul 2, 2021
1 parent 985301c commit 137f718
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aspnetcore/grpc/services.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public class GreeterService : GreeterBase
{
public override Task<HelloReply> SayHello(HelloRequest request, ServerCallContext context)
{
return Task.FromResult(new HelloRequest { Message = $"Hello {request.Name}" });
return Task.FromResult(new HelloReply { Message = $"Hello {request.Name}" });
}
}
```
Expand Down

0 comments on commit 137f718

Please sign in to comment.