From 201f6900658188ba50e05e036308010c2b97b006 Mon Sep 17 00:00:00 2001 From: Brandon Date: Thu, 1 Sep 2016 13:41:52 -0500 Subject: [PATCH] fixed typo 'until' typed twice (#1836) --- aspnet/fundamentals/routing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnet/fundamentals/routing.rst b/aspnet/fundamentals/routing.rst index 0ccb00de17..1532f53fc9 100644 --- a/aspnet/fundamentals/routing.rst +++ b/aspnet/fundamentals/routing.rst @@ -46,7 +46,7 @@ URL generation ^^^^^^^^^^^^^^ URL generation is the process by which routing can create a URL path based on a set of route values. This allows for a logical separation between your handlers and the URLs that access them. -URL generation follows a similar iterative process, but starts with user or framework code calling into the :dn:method:`~Microsoft.AspNetCore.Routing.IRouter.GetVirtualPath` method of the route collection. Each *route* will then have its ``GetVirtualPath`` method called in sequence until until a non-null :dn:cls:`~Microsoft.AspNetCore.Routing.VirtualPathData` is returned. +URL generation follows a similar iterative process, but starts with user or framework code calling into the :dn:method:`~Microsoft.AspNetCore.Routing.IRouter.GetVirtualPath` method of the route collection. Each *route* will then have its ``GetVirtualPath`` method called in sequence until a non-null :dn:cls:`~Microsoft.AspNetCore.Routing.VirtualPathData` is returned. The primary inputs to ``GetVirtualPath`` are: