From e1403b0ab234872a9a95375ba84b346f72940166 Mon Sep 17 00:00:00 2001 From: Benjamin Ruston Date: Fri, 27 May 2016 14:22:32 +0100 Subject: [PATCH] Fix typo in KeyFunc documentation --- token.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/token.go b/token.go index 1cf267d..c275333 100644 --- a/token.go +++ b/token.go @@ -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)