Fix typo in forbidden error

This commit is contained in:
Matthew Ryan Dillon 2015-10-20 16:22:24 -07:00
parent 88d1bb5fe4
commit 5dd14c1ffe

View file

@ -16,5 +16,5 @@ var (
// ErrEmailAddressTaken when email already registered.
ErrEmailAddressTaken = errors.New("Email address is already registered")
// ErrUserForbidden when user not allowed to view a resource
ErrUserForbidden = errors.New("User ccount not authorized")
ErrUserForbidden = errors.New("User account not authorized")
)