From 5cd9d80397bd005ca5edca598da528204de41206 Mon Sep 17 00:00:00 2001 From: Nick Haughton Date: Fri, 7 Jul 2017 07:31:05 -0400 Subject: [PATCH] Fixing documentation typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8109a7679d..1de45c853b 100644 --- a/README.md +++ b/README.md @@ -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); ```