Fix typo: null -> nil in README

This commit is contained in:
Bruno Bigras 2014-04-09 17:26:16 -04:00
parent c9e6fdb7e7
commit 6e1aef4b31
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(":(")