From c739570bf8879b63b55c74cd976a1130ae93dfa4 Mon Sep 17 00:00:00 2001 From: Matt Silverlock Date: Tue, 11 Aug 2015 20:09:55 +0800 Subject: Fixed typo in doc string. --- store.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'store.go') diff --git a/store.go b/store.go index 77ab0bf..e037e05 100644 --- a/store.go +++ b/store.go @@ -114,7 +114,7 @@ func (s *CookieStore) Save(r *http.Request, w http.ResponseWriter, } // MaxAge sets the maximum age for the store and the underlying cookie -// implementation. Individual sessions can be deleted by setting Options.MaxAge +// implementation. Individual sessions can be deleted by setting Options.MaxAge // = -1 for that session. func (s *CookieStore) MaxAge(age int) { s.Options.MaxAge = age @@ -227,7 +227,7 @@ func (s *FilesystemStore) Save(r *http.Request, w http.ResponseWriter, } // MaxAge sets the maximum age for the store and the underlying cookie -// implementation. Individual sessions can be deleted by setting Options.MaxAge +// implementation. Individual sessions can be deleted by setting Options.MaxAge // = -1 for that session. func (s *FilesystemStore) MaxAge(age int) { s.Options.MaxAge = age -- cgit v1.2.3