diff --git a/src/Microsoft.AspNetCore.Mvc.Abstractions/IUrlHelper.cs b/src/Microsoft.AspNetCore.Mvc.Abstractions/IUrlHelper.cs
index fc329aadc4..33a23fef25 100644
--- a/src/Microsoft.AspNetCore.Mvc.Abstractions/IUrlHelper.cs
+++ b/src/Microsoft.AspNetCore.Mvc.Abstractions/IUrlHelper.cs
@@ -26,7 +26,7 @@ namespace Microsoft.AspNetCore.Mvc
string Action(UrlActionContext actionContext);
///
- /// Converts a virtual (relative) path to an application absolute path.
+ /// Converts a virtual (relative, starting with ~/) path to an application absolute path.
///
///
/// If the specified content path does not start with the tilde (~) character,
diff --git a/src/Microsoft.AspNetCore.Mvc.Core/UrlHelperExtensions.cs b/src/Microsoft.AspNetCore.Mvc.Core/UrlHelperExtensions.cs
index 93720a5826..af43e847bb 100644
--- a/src/Microsoft.AspNetCore.Mvc.Core/UrlHelperExtensions.cs
+++ b/src/Microsoft.AspNetCore.Mvc.Core/UrlHelperExtensions.cs
@@ -338,7 +338,7 @@ namespace Microsoft.AspNetCore.Mvc
}
///
- /// Generates a URL with an absolute path for the specified .
+ /// Generates a URL with a relative path for the specified .
///
/// The .
/// The page name to generate the url for.
@@ -347,7 +347,7 @@ namespace Microsoft.AspNetCore.Mvc
=> Page(urlHelper, pageName, values: null);
///
- /// Generates a URL with an absolute path for the specified .
+ /// Generates a URL with a relative path for the specified .
///
/// The .
/// The page name to generate the url for.
@@ -357,7 +357,7 @@ namespace Microsoft.AspNetCore.Mvc
=> Page(urlHelper, pageName, pageHandler, values: null);
///
- /// Generates a URL with an absolute path for the specified .
+ /// Generates a URL with a relative path for the specified .
///
/// The .
/// The page name to generate the url for.
@@ -367,7 +367,7 @@ namespace Microsoft.AspNetCore.Mvc
=> Page(urlHelper, pageName, pageHandler: null, values: values);
///
- /// Generates a URL with an absolute path for the specified .
+ /// Generates a URL with a relative path for the specified .
///
/// The .
/// The page name to generate the url for.