Skip to content

Commit

Permalink
fix(err): add missed letter
Browse files Browse the repository at this point in the history
  • Loading branch information
Gusted committed Jun 26, 2021
1 parent d94ad00 commit 24b7611
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/errors/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ var (
ErrOAuthNotFound = errors.New("oauth not found")

// ErrIncompatibleType errors that the given scope wasn't compatible.
ErrIncompatibleType = errors.New("incompatible type for Scopes")
ErrIncompatibleType = errors.New("incompatible type for scopes")

// ErrPrimaryEmailNotVerified errors that the found primary email was not identified as being verified by third party.
ErrPrimaryEmailNotVerified = errors.New("primary email is not verified by third part")
ErrPrimaryEmailNotVerified = errors.New("primary email is not verified by third party")

errUnexpectedSigningMethod = errors.New("unexpected jwt signing method")

Expand Down

0 comments on commit 24b7611

Please sign in to comment.