From 76d011c4b2f4624a2eaf20510753ee8561daa7f3 Mon Sep 17 00:00:00 2001 From: FermeLeLundi Date: Thu, 28 Nov 2024 10:12:46 +0000 Subject: [PATCH] Update services/context/csrf.go Typo --- services/context/csrf.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/context/csrf.go b/services/context/csrf.go index e0518a499b..51127c6eb0 100644 --- a/services/context/csrf.go +++ b/services/context/csrf.go @@ -49,7 +49,7 @@ type csrfProtector struct { opt CsrfOptions // id must be unique per user. id string - // token is the valid one which wil be used by end user and passed via header, cookie, or hidden form value. + // token is the valid one which will be used by end user and passed via header, cookie, or hidden form value. token string }