From 203258d00eb0880bf211e71c7b149b083b8efb14 Mon Sep 17 00:00:00 2001 From: Brecht Carlier Date: Sat, 19 May 2018 13:52:30 +0200 Subject: [PATCH] Update AnchorTagHelper.cs Fixed incorrect documentation --- src/Microsoft.AspNetCore.Mvc.TagHelpers/AnchorTagHelper.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Microsoft.AspNetCore.Mvc.TagHelpers/AnchorTagHelper.cs b/src/Microsoft.AspNetCore.Mvc.TagHelpers/AnchorTagHelper.cs index 175523d2fb..5eefa99543 100644 --- a/src/Microsoft.AspNetCore.Mvc.TagHelpers/AnchorTagHelper.cs +++ b/src/Microsoft.AspNetCore.Mvc.TagHelpers/AnchorTagHelper.cs @@ -76,7 +76,7 @@ namespace Microsoft.AspNetCore.Mvc.TagHelpers /// The name of the area. /// /// - /// Must be null if or is non-null. + /// Must be null if is non-null. /// [HtmlAttributeName(AreaAttributeName)] public string Area { get; set; } @@ -86,7 +86,7 @@ namespace Microsoft.AspNetCore.Mvc.TagHelpers /// /// /// Must be null if or , - /// or is non-null. + /// is non-null. /// [HtmlAttributeName(PageAttributeName)] public string Page { get; set; } @@ -280,4 +280,4 @@ namespace Microsoft.AspNetCore.Mvc.TagHelpers output.MergeAttributes(tagBuilder); } } -} \ No newline at end of file +}