1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-09 00:22:08 +03:00

Fixing documentation typo

This commit is contained in:
Nick Haughton
2017-07-07 07:31:05 -04:00
parent 8f98f956e6
commit 5cd9d80397

View File

@@ -120,7 +120,7 @@ This library is a 1 to 1 mapping to [Redis commands](https://redis.io/commands).
Example setting key to auto expire using [SET command](https://redis.io/commands/set)
```js
// this key will expires after 10 seconds
// this key will expire after 10 seconds
client.set('key', 'value!', 'EX', 10);
```