Fix typo in forbidden error
This commit is contained in:
parent
88d1bb5fe4
commit
5dd14c1ffe
1 changed files with 1 additions and 1 deletions
|
@ -16,5 +16,5 @@ var (
|
||||||
// ErrEmailAddressTaken when email already registered.
|
// ErrEmailAddressTaken when email already registered.
|
||||||
ErrEmailAddressTaken = errors.New("Email address is already registered")
|
ErrEmailAddressTaken = errors.New("Email address is already registered")
|
||||||
// ErrUserForbidden when user not allowed to view a resource
|
// ErrUserForbidden when user not allowed to view a resource
|
||||||
ErrUserForbidden = errors.New("User ccount not authorized")
|
ErrUserForbidden = errors.New("User account not authorized")
|
||||||
)
|
)
|
||||||
|
|
Reference in a new issue