diff options
author | Mark Dain <ancarda@users.noreply.github.com> | 2014-01-05 14:10:22 +0400 |
---|---|---|
committer | Mark Dain <ancarda@users.noreply.github.com> | 2014-01-05 14:10:22 +0400 |
commit | 6e8111651587e2cf4de2570a5d3676a2397f82ea (patch) | |
tree | b7f6652aededae4e89ffbd3af115108af73e766a | |
parent | a8459038dc6d89fc6afb0e382f6ae0cf4f7d4f13 (diff) |
Added trailing comma
-rw-r--r-- | doc.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -115,7 +115,8 @@ maximum age of a session to one week: session.Options = &sessions.Options{ Path: "/", MaxAge: 86400 * 7, - HttpOnly: true} + HttpOnly: true, + } Sometimes we may want to change authentication and/or encryption keys without breaking existing sessions. The CookieStore supports key rotation, and to use |