diff --git a/src/Microsoft.AspNet.Mvc.Core/UrlActionContext.cs b/src/Microsoft.AspNet.Mvc.Core/UrlActionContext.cs index db255f4bbc..e96755c9d0 100644 --- a/src/Microsoft.AspNet.Mvc.Core/UrlActionContext.cs +++ b/src/Microsoft.AspNet.Mvc.Core/UrlActionContext.cs @@ -4,12 +4,12 @@ namespace Microsoft.AspNet.Mvc { /// - /// Context object to be used for the URLs that generates. + /// Context object to be used for the URLs that generates. /// public class UrlActionContext { /// - /// The name of the action method that uses to generate URLs. /// public string Action { @@ -18,7 +18,7 @@ namespace Microsoft.AspNet.Mvc } /// - /// The name of the controller that uses to generate URLs. /// public string Controller { @@ -27,7 +27,7 @@ namespace Microsoft.AspNet.Mvc } /// - /// The object that contains the route parameters that + /// The object that contains the route parameters that /// uses to generate URLs. /// public object Values @@ -37,7 +37,7 @@ namespace Microsoft.AspNet.Mvc } /// - /// The protocol for the URLs that generates /// such as "http" or "https" /// public string Protocol @@ -47,7 +47,7 @@ namespace Microsoft.AspNet.Mvc } /// - /// The host name for the URLs that generates. /// public string Host { @@ -56,7 +56,7 @@ namespace Microsoft.AspNet.Mvc } /// - /// The fragment for the URLs that generates. /// public string Fragment { diff --git a/src/Microsoft.AspNet.Mvc.Core/UrlRouteContext.cs b/src/Microsoft.AspNet.Mvc.Core/UrlRouteContext.cs index 7838fa11a6..6f697ab621 100644 --- a/src/Microsoft.AspNet.Mvc.Core/UrlRouteContext.cs +++ b/src/Microsoft.AspNet.Mvc.Core/UrlRouteContext.cs @@ -4,12 +4,12 @@ namespace Microsoft.AspNet.Mvc { /// - /// Context object to be used for the URLs that generates. + /// Context object to be used for the URLs that generates. /// public class UrlRouteContext { /// - /// The name of the route that uses to generate URLs. /// public string RouteName { @@ -27,7 +27,7 @@ namespace Microsoft.AspNet.Mvc } /// - /// The protocol for the URLs that generates /// such as "http" or "https" /// public string Protocol @@ -37,7 +37,7 @@ namespace Microsoft.AspNet.Mvc } /// - /// The host name for the URLs that generates. /// public string Host { @@ -46,7 +46,7 @@ namespace Microsoft.AspNet.Mvc } /// - /// The fragment for the URLs that generates. /// public string Fragment {