diff --git a/aspnet/fundamentals/middleware.rst b/aspnet/fundamentals/middleware.rst index ffd8762332..1a94dd7c2d 100644 --- a/aspnet/fundamentals/middleware.rst +++ b/aspnet/fundamentals/middleware.rst @@ -17,7 +17,7 @@ Middleware are software components that are assembled into an application pipeli Request delegates are configured using `Run `__, `Map `__, and `Use `__ extension methods on the `IApplicationBuilder `_ type that is passed into the ``Configure`` method in the ``Startup`` class. An individual request delegate can be specified in-line as an anonymous method, or it can be defined in a reusable class. These reusable classes are `middleware`, or `middleware components`. Each middleware component in the request pipeline is responsible for invoking the next component in the pipeline, or short-circuiting the chain if appropriate. -:doc:`/migration/http-modules` explains the difference between request pipelines in ASP.NET 5 and the previous versions and provides more middleware samples. +:doc:`/migration/http-modules` explains the difference between request pipelines in ASP.NET Core and the previous versions and provides more middleware samples. Creating a middleware pipeline with IApplicationBuilder -------------------------------------------------------