Aligned formatting with gofmt

Signed-off-by: Dave Trombley <dave.trombley@gmail.com>
pull/608/head
Dave Trombley 2015-04-22 15:13:48 +00:00 committed by Stephen J Day
parent 0ecaa7f40a
commit c4849bb99a
1 changed files with 2 additions and 2 deletions

View File

@ -33,8 +33,8 @@ type challenge struct {
var _ auth.AccessController = &accessController{}
var (
// ErrPasswordRequired - returned when no auth token is given.
ErrPasswordRequired = errors.New("authorization credential required")
// ErrInvalidCredential - returned when the auth token does not authenticate correctly.
ErrPasswordRequired = errors.New("authorization credential required")
// ErrInvalidCredential - returned when the auth token does not authenticate correctly.
ErrInvalidCredential = errors.New("invalid authorization credential")
)