Update doc comments

This commit is contained in:
Ryan Brandenburg 2018-08-08 12:42:48 -07:00
parent 7e25d7908a
commit 200a70bb86
2 changed files with 5 additions and 5 deletions

View File

@ -26,7 +26,7 @@ namespace Microsoft.AspNetCore.Mvc
string Action(UrlActionContext actionContext);
/// <summary>
/// Converts a virtual (relative) path to an application absolute path.
/// Converts a virtual (relative, starting with ~/) path to an application absolute path.
/// </summary>
/// <remarks>
/// If the specified content path does not start with the tilde (~) character,

View File

@ -338,7 +338,7 @@ namespace Microsoft.AspNetCore.Mvc
}
/// <summary>
/// Generates a URL with an absolute path for the specified <paramref name="pageName"/>.
/// Generates a URL with a relative path for the specified <paramref name="pageName"/>.
/// </summary>
/// <param name="urlHelper">The <see cref="IUrlHelper"/>.</param>
/// <param name="pageName">The page name to generate the url for.</param>
@ -347,7 +347,7 @@ namespace Microsoft.AspNetCore.Mvc
=> Page(urlHelper, pageName, values: null);
/// <summary>
/// Generates a URL with an absolute path for the specified <paramref name="pageName"/>.
/// Generates a URL with a relative path for the specified <paramref name="pageName"/>.
/// </summary>
/// <param name="urlHelper">The <see cref="IUrlHelper"/>.</param>
/// <param name="pageName">The page name to generate the url for.</param>
@ -357,7 +357,7 @@ namespace Microsoft.AspNetCore.Mvc
=> Page(urlHelper, pageName, pageHandler, values: null);
/// <summary>
/// Generates a URL with an absolute path for the specified <paramref name="pageName"/>.
/// Generates a URL with a relative path for the specified <paramref name="pageName"/>.
/// </summary>
/// <param name="urlHelper">The <see cref="IUrlHelper"/>.</param>
/// <param name="pageName">The page name to generate the url for.</param>
@ -367,7 +367,7 @@ namespace Microsoft.AspNetCore.Mvc
=> Page(urlHelper, pageName, pageHandler: null, values: values);
/// <summary>
/// Generates a URL with an absolute path for the specified <paramref name="pageName"/>.
/// Generates a URL with a relative path for the specified <paramref name="pageName"/>.
/// </summary>
/// <param name="urlHelper">The <see cref="IUrlHelper"/>.</param>
/// <param name="pageName">The page name to generate the url for.</param>