From 72bc9c0f2c8606a150b159786be4b718e29598fc Mon Sep 17 00:00:00 2001 From: chris2093 Date: Wed, 19 Oct 2016 07:54:52 -0700 Subject: [PATCH] Update DefaultAntiforgeryTokenStore.cs (#106) Corrected comment typo --- .../Internal/DefaultAntiforgeryTokenStore.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.AspNetCore.Antiforgery/Internal/DefaultAntiforgeryTokenStore.cs b/src/Microsoft.AspNetCore.Antiforgery/Internal/DefaultAntiforgeryTokenStore.cs index 896961bb41..4b30e8ced9 100644 --- a/src/Microsoft.AspNetCore.Antiforgery/Internal/DefaultAntiforgeryTokenStore.cs +++ b/src/Microsoft.AspNetCore.Antiforgery/Internal/DefaultAntiforgeryTokenStore.cs @@ -73,7 +73,7 @@ namespace Microsoft.AspNetCore.Antiforgery.Internal options.HttpOnly = true; options.Path = httpContext.Request.PathBase; // Note: don't use "newCookie.Secure = _options.RequireSSL;" since the default - // value of newCookie.Secure is poulated out of band. + // value of newCookie.Secure is populated out of band. if (_options.RequireSsl) { options.Secure = true; @@ -82,4 +82,4 @@ namespace Microsoft.AspNetCore.Antiforgery.Internal httpContext.Response.Cookies.Append(_options.CookieName, token, options); } } -} \ No newline at end of file +}