Fix typo in KeyFunc documentation

This commit is contained in:
Benjamin Ruston 2016-05-27 14:22:32 +01:00
parent 40bd0f3b48
commit e1403b0ab2
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)