From 7ab93d34e4ccc153101358e54ba7efc45f9d9394 Mon Sep 17 00:00:00 2001 From: dougbu Date: Tue, 5 Aug 2014 11:05:25 -0700 Subject: [PATCH] Remove incorrect references to `HtmlHelper` class - extension methods extend `IHtmlHelper` --- .../Rendering/HtmlHelperPartialExtensions.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Microsoft.AspNet.Mvc.Core/Rendering/HtmlHelperPartialExtensions.cs b/src/Microsoft.AspNet.Mvc.Core/Rendering/HtmlHelperPartialExtensions.cs index a80d0d3335..e529a1de8c 100644 --- a/src/Microsoft.AspNet.Mvc.Core/Rendering/HtmlHelperPartialExtensions.cs +++ b/src/Microsoft.AspNet.Mvc.Core/Rendering/HtmlHelperPartialExtensions.cs @@ -10,7 +10,7 @@ namespace Microsoft.AspNet.Mvc.Rendering /// /// Renders the partial view with the parent's view data and model to a string. /// - /// The instance that this method extends. + /// The instance that this method extends. /// The name of the partial view to render. /// /// A that represents when rendering to the has completed. @@ -25,7 +25,7 @@ namespace Microsoft.AspNet.Mvc.Rendering /// /// Renders the partial view with the given view data and, implicitly, the given view data's model to a string. /// - /// The instance that this method extends. + /// The instance that this method extends. /// The name of the partial view to render. /// /// The that is provided to the partial view that will be rendered. @@ -44,7 +44,7 @@ namespace Microsoft.AspNet.Mvc.Rendering /// /// Renders the partial view with an empty view data and the given model to a string. /// - /// The instance that this method extends. + /// The instance that this method extends. /// The name of the partial view to render. /// The model to provide to the partial view that will be rendered. /// @@ -61,7 +61,7 @@ namespace Microsoft.AspNet.Mvc.Rendering /// /// Renders the partial view with the parent's view data and model. /// - /// The instance that this method extends. + /// The instance that this method extends. /// The name of the partial view to render. /// A that represents when rendering has completed. public static Task RenderPartialAsync( @@ -75,7 +75,7 @@ namespace Microsoft.AspNet.Mvc.Rendering /// /// Renders the partial view with the given view data and, implicitly, the given view data's model. /// - /// The instance that this method extends. + /// The instance that this method extends. /// The name of the partial view to render. /// /// The that is provided to the partial view that will be rendered. @@ -92,7 +92,7 @@ namespace Microsoft.AspNet.Mvc.Rendering /// /// Renders the partial view with an empty view data and the given model. /// - /// The instance that this method extends. + /// The instance that this method extends. /// The name of the partial view to render. /// The model to provide to the partial view that will be rendered. /// A that represents when rendering has completed.