Remove repeated word "the" (#23045)

pull/23049/head
GitHubPang 2021-08-17 09:36:53 +08:00 committed by GitHub
parent 59093c3219
commit 0f3458ffe3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,7 @@ public override async Task<ExampleResponse> 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<ExampleRequest> requestStream,