diff --git a/README.md b/README.md index f966435..48310cc 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ Synchronous Sign with RSA SHA256 ```js // sign with RSA SHA256 var privateKey = fs.readFileSync('private.key'); -var token = jwt.sign({ foo: 'bar' }, privateKey, { algorithm: 'RS256'}); +var token = jwt.sign({ foo: 'bar' }, privateKey, { algorithm: 'RS256' }); ``` Sign asynchronously