From b075a5b30b47e79af1330238a3b5ea97a3c2ac4b Mon Sep 17 00:00:00 2001 From: Vincent Date: Wed, 23 Mar 2022 09:01:35 +0100 Subject: [PATCH] fix: typo in error message (#2332) --- continuity/manager_cookie.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/continuity/manager_cookie.go b/continuity/manager_cookie.go index 4f75bb62761f..45b24c9a0c49 100644 --- a/continuity/manager_cookie.go +++ b/continuity/manager_cookie.go @@ -17,7 +17,7 @@ import ( ) var _ Manager = new(ManagerCookie) -var ErrNotResumable = *herodot.ErrBadRequest.WithError("no resumable session found").WithReasonf("The browser does not contain the neccesary cookie to resume the session. This is a security violation and was thus blocked. Please clear your browser's cookies and cache and try again!") +var ErrNotResumable = *herodot.ErrBadRequest.WithError("no resumable session found").WithReasonf("The browser does not contain the necessary cookie to resume the session. This is a security violation and was blocked. Please clear your browser's cookies and cache and try again!") const CookieName = "ory_kratos_continuity"