Merge pull request #13 from brunoqc/patch-1

Fix typo: null -> nil in README
This commit is contained in:
Dave Grijalva 2014-04-09 14:57:02 -07:00
commit 71c6a65cfe
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ This library is considered production ready. Feedback and feature requests are
return myLookupKey(token.Header["kid"])
})
if err == null && token.Valid {
if err == nil && token.Valid {
deliverGoodness("!")
} else {
deliverUtterRejection(":(")