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.