Update AnchorTagHelper.cs

Fixed incorrect documentation
This commit is contained in:
Brecht Carlier 2018-05-19 13:52:30 +02:00 committed by Pranav K
parent c29527f992
commit 203258d00e
1 changed files with 3 additions and 3 deletions

View File

@ -76,7 +76,7 @@ namespace Microsoft.AspNetCore.Mvc.TagHelpers
/// The name of the area. /// The name of the area.
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// Must be <c>null</c> if <see cref="Route"/> or <see cref="Page"/> is non-<c>null</c>. /// Must be <c>null</c> if <see cref="Route"/> is non-<c>null</c>.
/// </remarks> /// </remarks>
[HtmlAttributeName(AreaAttributeName)] [HtmlAttributeName(AreaAttributeName)]
public string Area { get; set; } public string Area { get; set; }
@ -86,7 +86,7 @@ namespace Microsoft.AspNetCore.Mvc.TagHelpers
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// Must be <c>null</c> if <see cref="Route"/> or <see cref="Action"/>, <see cref="Controller"/> /// Must be <c>null</c> if <see cref="Route"/> or <see cref="Action"/>, <see cref="Controller"/>
/// or <see cref="Area"/> is non-<c>null</c>. /// is non-<c>null</c>.
/// </remarks> /// </remarks>
[HtmlAttributeName(PageAttributeName)] [HtmlAttributeName(PageAttributeName)]
public string Page { get; set; } public string Page { get; set; }
@ -280,4 +280,4 @@ namespace Microsoft.AspNetCore.Mvc.TagHelpers
output.MergeAttributes(tagBuilder); output.MergeAttributes(tagBuilder);
} }
} }
} }