From 9cfc9e7adff1e7e9e1c15a5db368163f4a3fce9d Mon Sep 17 00:00:00 2001 From: Fiyaz Bin Hasan Date: Fri, 8 Apr 2022 15:15:21 +0600 Subject: [PATCH] fix formatting for api reference (#25577) --- aspnetcore/fundamentals/middleware/write.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/fundamentals/middleware/write.md b/aspnetcore/fundamentals/middleware/write.md index 9ac9dc48d5..afff9f794d 100644 --- a/aspnetcore/fundamentals/middleware/write.md +++ b/aspnetcore/fundamentals/middleware/write.md @@ -30,7 +30,7 @@ The preceding highlighted inline middleware is used to demonstrate creating a mi There are two overloads available for the `Use` extension: * One takes a and a `Func`. Invoke the `Func` without any parameters. -* The other takes a `HttpContext` and a ``. Invoke the `RequestDelegate` by passing the `HttpContext`. +* The other takes a `HttpContext` and a . Invoke the `RequestDelegate` by passing the `HttpContext`. Prefer using the later overload as it saves two internal per-request allocations that are required when using the other overload.