fixed typo
This commit is contained in:
parent
9291fdbf6a
commit
40e1f1bf58
1 changed files with 1 additions and 1 deletions
2
jwt.go
2
jwt.go
|
|
@ -31,7 +31,7 @@ var (
|
||||||
ErrNBF = errors.New("token not valid yet")
|
ErrNBF = errors.New("token not valid yet")
|
||||||
ErrEXP = errors.New("token expired")
|
ErrEXP = errors.New("token expired")
|
||||||
ErrMissingEXP = errors.New("missing exp claim")
|
ErrMissingEXP = errors.New("missing exp claim")
|
||||||
ErrMissingTokenParts = errors.New("missíng token parts")
|
ErrMissingTokenParts = errors.New("missing token parts")
|
||||||
ErrEmptySignature = errors.New("token signature is empty")
|
ErrEmptySignature = errors.New("token signature is empty")
|
||||||
ErrTokenIsNil = errors.New("token is nil")
|
ErrTokenIsNil = errors.New("token is nil")
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue