diff --git a/server/main.go b/server/main.go index c5865deb1f5912eb60abaed387d96f59966073cd..3a204602fb7b439008ce93d24783be65896d0d9a 100644 --- a/server/main.go +++ b/server/main.go @@ -40,7 +40,7 @@ type appContext struct { jwtSigningKey []byte } -// getAuthCookie retrieves a the cookie from the request and validates it. +// getAuthCookie retrieves a cookie from the request and validates it. func (a *appContext) getAuthCookie(r *http.Request) *oauth2.Token { session, _ := a.cookiestore.Get(r, "tok") t, ok := session.Values["token"]