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.