Correct extension class names to match containing files
- #874 line 5 - `EditorExtensions` -> `HtmlHelperEditorExtensions` - `SelectExtensions` -> `HtmlHelperSelectExtensions`
This commit is contained in:
parent
f4d53a0045
commit
5bdf7955a0
|
|
@ -6,7 +6,7 @@ using System.Linq.Expressions;
|
||||||
|
|
||||||
namespace Microsoft.AspNet.Mvc.Rendering
|
namespace Microsoft.AspNet.Mvc.Rendering
|
||||||
{
|
{
|
||||||
public static class EditorExtensions
|
public static class HtmlHelperEditorExtensions
|
||||||
{
|
{
|
||||||
public static HtmlString Editor([NotNull] this IHtmlHelper html, string expression)
|
public static HtmlString Editor([NotNull] this IHtmlHelper html, string expression)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ using System.Linq.Expressions;
|
||||||
|
|
||||||
namespace Microsoft.AspNet.Mvc.Rendering
|
namespace Microsoft.AspNet.Mvc.Rendering
|
||||||
{
|
{
|
||||||
public static class SelectExtensions
|
public static class HtmlHelperSelectExtensions
|
||||||
{
|
{
|
||||||
public static HtmlString DropDownList([NotNull] this IHtmlHelper htmlHelper, string name)
|
public static HtmlString DropDownList([NotNull] this IHtmlHelper htmlHelper, string name)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue