Fix some comments.

This commit is contained in:
Aaron L
2015-03-16 21:38:00 -07:00
parent 3d905f001f
commit 185d916d95
2 changed files with 1 additions and 4 deletions
+1 -2
View File
@@ -2,8 +2,7 @@
Package authboss is a modular authentication system for the web. It tries to
remove as much boilerplate and "hard things" as possible so that each time you
start a new web project in Go, you can plug it in, configure and be off to the
races without having to think about the hard questions like how to store
Remember Me tokens, or passwords.
races without having to think about how to store passwords or remember tokens.
*/
package authboss // import "gopkg.in/authboss.v0"
-2
View File
@@ -1,6 +1,4 @@
// Package remember implements persistent logins through the cookie storer.
// The ClientStorer implementation must be fully secure either over https
// or using signed cookies or it is easily exploitable.
package remember
import (