Skip to content

Commit 08043e2

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

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
@@ -70,7 +70,7 @@ These issues are fixable, but the code is becoming progressively more complicate
7070

7171
## Pipelines
7272

73-
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:
73+
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.
7676
* Calling `FlushAsync` writes the buffered data to the underlying network operation

0 commit comments

Comments
 (0)