Skip to content

Commit a542403

Browse files
EddyVerbruggenziluvatar
authored andcommitted
Fixed a simple typo (#287)
* Fixed a simple typo The example didn't work because of a missing comma. * Fixed a simple typo The example didn't work because of a missing comma.
1 parent 1b6ec8d commit a542403

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Signing a token with 1 hour of expiration:
7878

7979
```javascript
8080
jwt.sign({
81-
exp: Math.floor(Date.now() / 1000) + (60 * 60)
81+
exp: Math.floor(Date.now() / 1000) + (60 * 60),
8282
data: 'foobar'
8383
}, 'secret');
8484
```

0 commit comments

Comments
 (0)