From 34eac0db40967b231907a5835453da75de93a91f Mon Sep 17 00:00:00 2001 From: Thomas Hunter II Date: Thu, 27 Dec 2018 14:53:01 -0800 Subject: [PATCH] Fix typo in createClient.js --- lib/createClient.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/createClient.js b/lib/createClient.js index 13c213470a..1533d73d1b 100644 --- a/lib/createClient.js +++ b/lib/createClient.js @@ -72,7 +72,7 @@ module.exports = function createClient (port_arg, host_arg, options) { options.host = options.host || host_arg; if (port_arg && arguments.length !== 1) { - throw new TypeError('To many arguments passed to createClient. Please only pass the options object'); + throw new TypeError('Too many arguments passed to createClient. Please only pass the options object'); } }