Skip to content

Commit 5645802

Browse files
Update aspnetcore/fundamentals/middleware/request-response.md
1 parent 08043e2 commit 5645802

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aspnetcore/fundamentals/middleware/request-response.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ These issues are fixable, but the code is becoming progressively more complicate
7373
When writing directly to `HttpResponse.BodyWriter`, call `PipeWriter.FlushAsync` manually to ensure the data is flushed to the underlying response response body. Here's why:
7474

7575
* `HttpResponse.BodyWriter` is a `PipeWriter` that buffers data until a flush operation is triggered.
76-
* Calling `FlushAsync` writes the buffered data to the underlying network operation
76+
* Calling `FlushAsync` writes the buffered data to the underlying response body
7777

7878
The following example shows how the same scenario can be handled using a [PipeReader](/dotnet/standard/io/pipelines#pipe):
7979

0 commit comments

Comments
 (0)