From 1c9a4f5705c02d182e6beefa96739de81cd3d850 Mon Sep 17 00:00:00 2001 From: Juan Naputi Date: Wed, 1 Mar 2017 09:07:52 -0800 Subject: [PATCH] Fixed typo in IAntiforgery file --- src/Microsoft.AspNetCore.Antiforgery/IAntiforgery.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.AspNetCore.Antiforgery/IAntiforgery.cs b/src/Microsoft.AspNetCore.Antiforgery/IAntiforgery.cs index d6dd05aeae..89630a46d0 100644 --- a/src/Microsoft.AspNetCore.Antiforgery/IAntiforgery.cs +++ b/src/Microsoft.AspNetCore.Antiforgery/IAntiforgery.cs @@ -42,8 +42,8 @@ namespace Microsoft.AspNetCore.Antiforgery /// /// The associated with the current request. /// - /// A that, when completed, returns true if the is requst uses a safe HTTP - /// method or contains a value antiforgery token, otherwise returns false. + /// A that, when completed, returns true if the request uses a safe HTTP + /// method or contains a valid antiforgery token, otherwise returns false. /// Task IsRequestValidAsync(HttpContext httpContext);