Fix comment

This commit is contained in:
Steve Sanderson 2018-02-21 00:21:04 +00:00
parent fc9cb1af65
commit b764029ce0
1 changed files with 1 additions and 2 deletions

View File

@ -75,8 +75,7 @@ namespace Microsoft.AspNetCore.Blazor.Browser.Routing
&& absoluteUri[baseUriPrefix.Length] == '/')
{
// The absolute URI must be of the form "{baseUriPrefix}/something",
// and from that we return "/something" (also stripping any querystring
// and/or hash value)
// and from that we return "/something"
return absoluteUri.Substring(baseUriPrefix.Length);
}