From 0f3458ffe342914379745a94bdb57adc2da21cf3 Mon Sep 17 00:00:00 2001 From: GitHubPang <61439577+GitHubPang@users.noreply.github.com> Date: Tue, 17 Aug 2021 09:36:53 +0800 Subject: [PATCH] Remove repeated word "the" (#23045) --- aspnetcore/grpc/services.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/grpc/services.md b/aspnetcore/grpc/services.md index 6ce8fd23d1..df0eeef6df 100644 --- a/aspnetcore/grpc/services.md +++ b/aspnetcore/grpc/services.md @@ -209,7 +209,7 @@ public override async Task StreamingFromClient( ### Bi-directional streaming method -A bi-directional streaming method starts *without* the method receiving a message. The `requestStream` parameter is used to read messages from the client. The method can choose to send messages with `responseStream.WriteAsync`. A bi-directional streaming call is complete when the the method returns: +A bi-directional streaming method starts *without* the method receiving a message. The `requestStream` parameter is used to read messages from the client. The method can choose to send messages with `responseStream.WriteAsync`. A bi-directional streaming call is complete when the method returns: ```csharp public override async Task StreamingBothWays(IAsyncStreamReader requestStream,