Merge pull request #136 from bruston/keyfunc-typo

Fix typo in KeyFunc documentation
This commit is contained in:
Dave Grijalva 2016-05-31 11:11:19 -07:00
commit 9b486c879b
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ var TimeFunc = time.Now
// Parse methods use this callback function to supply
// the key for verification. The function receives the parsed,
// but unverified Token. This allows you to use propries in the
// but unverified Token. This allows you to use properties in the
// Header of the token (such as `kid`) to identify which key to use.
type Keyfunc func(*Token) (interface{}, error)