Fixing doc comments

This commit is contained in:
Steve Smith 2017-02-20 12:44:33 -05:00 committed by Pranav K
parent e11e6b3be7
commit f3b1f2ca29
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ namespace Microsoft.AspNetCore.Mvc
/// token is required for HTTP methods other than GET, HEAD, OPTIONS, and TRACE.
/// </summary>
/// <remarks>
/// <see cref="AutoValidateAntiforgeryTokenAttribute"/> can be applied at as a global filter to trigger
/// <see cref="AutoValidateAntiforgeryTokenAttribute"/> can be applied as a global filter to trigger
/// validation of antiforgery tokens by default for an application. Use
/// <see cref="IgnoreAntiforgeryTokenAttribute"/> to suppress validation of the antiforgery token for
/// a controller or action.
@ -27,7 +27,7 @@ namespace Microsoft.AspNetCore.Mvc
/// </summary>
/// <remarks>
/// <para>
/// Filters are executed in an ordering determined by an ascending sort of the <see cref="Order"/> property.
/// Filters are executed in a sequence determined by an ascending sort of the <see cref="Order"/> property.
/// </para>
/// <para>
/// The default Order for this attribute is 1000 because it must run after any filter which does authentication