Skip to content

Commit 440a283

Browse files
Fix PipeWriter.AsStream(bool) xmldoc (#112669)
1 parent d6b6298 commit 440a283

File tree

1 file changed

+1
-1
lines changed
  • src/libraries/System.IO.Pipelines/src/System/IO/Pipelines

1 file changed

+1
-1
lines changed

src/libraries/System.IO.Pipelines/src/System/IO/Pipelines/PipeWriter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public virtual void OnReaderCompleted(Action<Exception?, object?> callback, obje
8181
public abstract Span<byte> GetSpan(int sizeHint = 0);
8282

8383
/// <summary>Returns a <see cref="System.IO.Stream" /> representation of the <see cref="System.IO.Pipelines.PipeWriter" />.</summary>
84-
/// <param name="leaveOpen">An optional flag that indicates whether disposing the returned <see cref="System.IO.Stream" /> leaves <see cref="System.IO.Pipelines.PipeReader" /> open (<see langword="true" />) or completes <see cref="System.IO.Pipelines.PipeReader" /> (<see langword="false" />).</param>
84+
/// <param name="leaveOpen">An optional flag that indicates whether disposing the returned <see cref="System.IO.Stream" /> leaves <see cref="System.IO.Pipelines.PipeWriter" /> open (<see langword="true" />) or completes <see cref="System.IO.Pipelines.PipeWriter" /> (<see langword="false" />).</param>
8585
/// <returns>A stream that represents the <see cref="System.IO.Pipelines.PipeWriter" />.</returns>
8686
public virtual Stream AsStream(bool leaveOpen = false)
8787
{

0 commit comments

Comments
 (0)