From ff3f98a36705c965736b8332a74d5be13b33cc9a Mon Sep 17 00:00:00 2001
From: Olivier Tharan <olivier@tharan.org>
Date: Fri, 22 Apr 2016 09:35:53 +0200
Subject: [PATCH] Fix typo in comment.

---
 server/main.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/main.go b/server/main.go
index c5865deb..3a204602 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"]
-- 
GitLab