From 2855fc2fb8ec8c65e6a658749ee23e64931b7a45 Mon Sep 17 00:00:00 2001 From: MaxHorstmann Date: Sun, 26 Nov 2017 21:50:29 -0500 Subject: [PATCH] fix typo --- aspnetcore/mvc/controllers/routing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/mvc/controllers/routing.md b/aspnetcore/mvc/controllers/routing.md index fb01e4294b..3cfdcfb0f2 100644 --- a/aspnetcore/mvc/controllers/routing.md +++ b/aspnetcore/mvc/controllers/routing.md @@ -201,7 +201,7 @@ app.UseMvc(routes => }); ``` -The route names give the route a logical name so that the named route can be used for URL generation. This greatly simplifies URL creation when the ordering of routes could make URL generation complicated. Routes names must be unique application-wide. +The route names give the route a logical name so that the named route can be used for URL generation. This greatly simplifies URL creation when the ordering of routes could make URL generation complicated. Route names must be unique application-wide. Route names have no impact on URL matching or handling of requests; they are used only for URL generation. [Routing](xref:fundamentals/routing) has more detailed information on URL generation including URL generation in MVC-specific helpers.