From f9a0a4a2809067a9561689577682528c6ade9c0b Mon Sep 17 00:00:00 2001 From: Teko <112829523+Teko012@users.noreply.github.com> Date: Tue, 20 Aug 2024 18:41:23 +0200 Subject: [PATCH] doc: fix typo in function description (#2738) --- pkg/middleware/stored_session.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/middleware/stored_session.go b/pkg/middleware/stored_session.go index 1afe6d0c..f861c756 100644 --- a/pkg/middleware/stored_session.go +++ b/pkg/middleware/stored_session.go @@ -105,7 +105,7 @@ func (s *storedSessionLoader) loadSession(next http.Handler) http.Handler { } // getValidatedSession is responsible for loading a session and making sure -// that is is valid. +// that it is valid. func (s *storedSessionLoader) getValidatedSession(rw http.ResponseWriter, req *http.Request) (*sessionsapi.SessionState, error) { session, err := s.store.Load(req) if err != nil || session == nil {