From 7ce73189b9568a4453cbed5830ea3fe228fda05a Mon Sep 17 00:00:00 2001 From: Karl Svartholm Date: Thu, 13 Jul 2017 20:06:54 +0200 Subject: [PATCH] :memo: fix typo: To / Too --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1de45c853b..cfd5bfe5f7 100644 --- a/README.md +++ b/README.md @@ -330,7 +330,7 @@ client.on('error', function (err) { assert.strictEqual(err.errors.length, 2); // The set and get got aggregated in here assert.strictEqual(err.code, 'NR_CLOSED'); }); -client.set('foo', 123, 'bar', function (err, res) { // To many arguments +client.set('foo', 123, 'bar', function (err, res) { // Too many arguments assert(err instanceof redis.ReplyError); // => true assert.strictEqual(err.command, 'SET'); assert.deepStrictEqual(err.args, ['foo', 123, 'bar']);