From 2967ba9e376953b06aa0fd778619c9e78e26c1ea Mon Sep 17 00:00:00 2001 From: GitHubPang <61439577+GitHubPang@users.noreply.github.com> Date: Mon, 20 Dec 2021 10:00:38 +0800 Subject: [PATCH] Fix typo (#24375) --- aspnetcore/fundamentals/middleware/request-response.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/fundamentals/middleware/request-response.md b/aspnetcore/fundamentals/middleware/request-response.md index 1d9d150463..11880c06d3 100644 --- a/aspnetcore/fundamentals/middleware/request-response.md +++ b/aspnetcore/fundamentals/middleware/request-response.md @@ -60,7 +60,7 @@ This preceding example: * Doesn't buffer the entire request body in a `StringBuilder` unless there aren't any newline characters. * Doesn't call `Split` on the string. -However, there are still are a few issues: +However, there are still a few issues: * If newline characters are sparse, much of the request body is buffered in the string. * The code continues to create strings (`remainingString`) and adds them to the string buffer, which results in an extra allocation.