Skip to content

Commit

Permalink
fix ParseString arguments in README.md (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
shoanchikato authored Feb 2, 2021
1 parent f119eaf commit 6c0b682
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ checkErr(err)

// parse a Token (by example received from a request)
tokenStr := `<header.payload.signature>`
token, err := jwt.ParseString(tokenStr, verifier)
token, err := jwt.ParseString(tokenStr)
checkErr(err)

// and verify it's signature
Expand Down

0 comments on commit 6c0b682

Please sign in to comment.