From a5b2b8989b071e8da47e185514e84f983e40a632 Mon Sep 17 00:00:00 2001 From: wernerr Date: Mon, 6 Dec 2021 13:35:47 +0100 Subject: [PATCH] fix middleware/session README.md --- middleware/session/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/middleware/session/README.md b/middleware/session/README.md index 2c13de03..32d8c1ed 100644 --- a/middleware/session/README.md +++ b/middleware/session/README.md @@ -124,23 +124,23 @@ type Config struct { // Optional. Default value "cookie:session_id". KeyLookup string - // Domain of the CSRF cookie. + // Domain of the cookie. // Optional. Default value "". CookieDomain string - // Path of the CSRF cookie. + // Path of the cookie. // Optional. Default value "". CookiePath string - // Indicates if CSRF cookie is secure. + // Indicates if cookie is secure. // Optional. Default value false. CookieSecure bool - // Indicates if CSRF cookie is HTTP only. + // Indicates if cookie is HTTP only. // Optional. Default value false. CookieHTTPOnly bool - // Sets the CSRF cookie SameSite attribute. + // Sets the cookie SameSite attribute. // Optional. Default value "Lax". CookieSameSite string