diff --git a/aspnetcore/mvc/controllers/areas.md b/aspnetcore/mvc/controllers/areas.md index 21dc563348..55e5801553 100644 --- a/aspnetcore/mvc/controllers/areas.md +++ b/aspnetcore/mvc/controllers/areas.md @@ -124,7 +124,7 @@ Once you've defined the folder hierarchy, you need to tell MVC that each control } ``` -Set up a route definition that works with your newly created areas. The [🔧 Routing to Controller Actions](routing.md) article goes into detail about how to create route definitions, including using conventional routes versus attribute routes. In this example, we'll use a conventional route. To do so, open the *Startup.cs* file and modify it by adding the `areaRoute` named route definition below. +Set up a route definition that works with your newly created areas. The [Routing to Controller Actions](routing.md) article goes into detail about how to create route definitions, including using conventional routes versus attribute routes. In this example, we'll use a conventional route. To do so, open the *Startup.cs* file and modify it by adding the `areaRoute` named route definition below. @@ -185,4 +185,4 @@ Browsing to `http:///products`, the `Index` action method of the `HomeC ## Publishing Areas -All `*.cshtml` and `wwwroot/**` files are published to output when `` is included in the *.csproj* file. \ No newline at end of file +All `*.cshtml` and `wwwroot/**` files are published to output when `` is included in the *.csproj* file.