Fix xml doc comment on FlushResult.IsCompleted (#491)
authorAndrew Arnott <andrewarnott@gmail.com>
Thu, 5 Dec 2019 13:52:29 +0000 (06:52 -0700)
committerStephen Toub <stoub@microsoft.com>
Thu, 5 Dec 2019 13:52:29 +0000 (08:52 -0500)
src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/FlushResult.cs

index 5eab31c..ccd04d7 100644 (file)
@@ -35,7 +35,7 @@ namespace System.IO.Pipelines
         public bool IsCanceled => (_resultFlags & ResultFlags.Canceled) != 0;
 
         /// <summary>
-        /// True if the <see cref="PipeWriter"/> is complete otherwise false
+        /// Gets a value that indicates the reader is no longer reading data written to the <see cref="PipeWriter" />.
         /// </summary>
         public bool IsCompleted => (_resultFlags & ResultFlags.Completed) != 0;
     }