From f3b1f2ca292d73ce5fc1a27d01ed01e86b0fd87a Mon Sep 17 00:00:00 2001 From: Steve Smith Date: Mon, 20 Feb 2017 12:44:33 -0500 Subject: [PATCH] Fixing doc comments --- .../AutoValidateAntiforgeryTokenAttribute.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.AspNetCore.Mvc.ViewFeatures/AutoValidateAntiforgeryTokenAttribute.cs b/src/Microsoft.AspNetCore.Mvc.ViewFeatures/AutoValidateAntiforgeryTokenAttribute.cs index 64015f7d8b..673e52c261 100644 --- a/src/Microsoft.AspNetCore.Mvc.ViewFeatures/AutoValidateAntiforgeryTokenAttribute.cs +++ b/src/Microsoft.AspNetCore.Mvc.ViewFeatures/AutoValidateAntiforgeryTokenAttribute.cs @@ -13,7 +13,7 @@ namespace Microsoft.AspNetCore.Mvc /// token is required for HTTP methods other than GET, HEAD, OPTIONS, and TRACE. /// /// - /// can be applied at as a global filter to trigger + /// can be applied as a global filter to trigger /// validation of antiforgery tokens by default for an application. Use /// to suppress validation of the antiforgery token for /// a controller or action. @@ -27,7 +27,7 @@ namespace Microsoft.AspNetCore.Mvc /// /// /// - /// Filters are executed in an ordering determined by an ascending sort of the property. + /// Filters are executed in a sequence determined by an ascending sort of the property. /// /// /// The default Order for this attribute is 1000 because it must run after any filter which does authentication