From 5ed1f061869b7d4e624a51789fd4a135ddb34b45 Mon Sep 17 00:00:00 2001 From: "Ibrahim P.G" <38604383+ibrahimpg@users.noreply.github.com> Date: Mon, 21 Oct 2019 06:25:55 -0500 Subject: [PATCH] docs: fix tiny style change in readme (#622) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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