fixed typo

This commit is contained in:
ston1th 2018-01-03 22:56:25 +01:00
commit 40e1f1bf58

2
jwt.go
View file

@ -31,7 +31,7 @@ var (
ErrNBF = errors.New("token not valid yet")
ErrEXP = errors.New("token expired")
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")
ErrTokenIsNil = errors.New("token is nil")
)