From 022d5b205fda8f99f7adccea838142abe9a7da32 Mon Sep 17 00:00:00 2001 From: James Newton-King Date: Tue, 14 Jan 2020 20:44:33 +1300 Subject: [PATCH] Update IAsyncStreamWriter.cs --- src/csharp/Grpc.Core.Api/IAsyncStreamWriter.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/csharp/Grpc.Core.Api/IAsyncStreamWriter.cs b/src/csharp/Grpc.Core.Api/IAsyncStreamWriter.cs index 823ca9afc48..ccf046851a0 100644 --- a/src/csharp/Grpc.Core.Api/IAsyncStreamWriter.cs +++ b/src/csharp/Grpc.Core.Api/IAsyncStreamWriter.cs @@ -31,9 +31,9 @@ namespace Grpc.Core public interface IAsyncStreamWriter { /// - /// Writes a single asynchronously. Only one write can be pending at a time. + /// Writes a message asynchronously. Only one write can be pending at a time. /// - /// the message to be written. Cannot be null. + /// The message to be written. Cannot be null. Task WriteAsync(T message); ///