diff --git a/src/Microsoft.AspNet.Mvc.Rendering/IHtmlHelperOfT.cs b/src/Microsoft.AspNet.Mvc.Rendering/IHtmlHelperOfT.cs index aaa2320562..47f5903851 100644 --- a/src/Microsoft.AspNet.Mvc.Rendering/IHtmlHelperOfT.cs +++ b/src/Microsoft.AspNet.Mvc.Rendering/IHtmlHelperOfT.cs @@ -1,7 +1,6 @@ using System; using System.Collections.Generic; using System.Linq.Expressions; -using System.Collections.Generic; using System.Threading.Tasks; namespace Microsoft.AspNet.Mvc.Rendering @@ -131,15 +130,19 @@ namespace Microsoft.AspNet.Mvc.Rendering /// /// New containing the rendered HTML. HtmlString TextBoxFor([NotNull] Expression> expression, string format, - IDictionary htmlAttributes); + IDictionary htmlAttributes); /// - /// Returns an unordered list (ul element) of validation messages that are in the object. + /// Returns an unordered list (ul element) of validation messages that are in the + /// object. /// - /// true to have the summary display model-level errors only, or false to have the summary display all errors. + /// true to have the summary display model-level errors only, or false to + /// have the summary display all errors. /// The message to display with the validation summary. /// A dictionary that contains the HTML attributes for the element. - /// An that contains an unordered list (ul element) of validation messages. - HtmlString ValidationSummary(bool excludePropertyErrors, string message, IDictionary htmlAttributes); + /// An that contains an unordered list (ul element) of validation messages. + /// + HtmlString ValidationSummary(bool excludePropertyErrors, string message, + IDictionary htmlAttributes); } }