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 {