From 7141ab78e3ca81acf784405513b0dd1a5891daff Mon Sep 17 00:00:00 2001 From: Andrew Arnott Date: Thu, 5 Dec 2019 06:52:29 -0700 Subject: [PATCH] Fix xml doc comment on FlushResult.IsCompleted (#491) --- .../System.IO.Pipelines/src/System/IO/Pipelines/FlushResult.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/FlushResult.cs b/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/FlushResult.cs index 5eab31c..ccd04d7 100644 --- a/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/FlushResult.cs +++ b/src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/FlushResult.cs @@ -35,7 +35,7 @@ namespace System.IO.Pipelines public bool IsCanceled => (_resultFlags & ResultFlags.Canceled) != 0; /// - /// True if the is complete otherwise false + /// Gets a value that indicates the reader is no longer reading data written to the . /// public bool IsCompleted => (_resultFlags & ResultFlags.Completed) != 0; } -- 2.7.4