From 6b2883d2904debeb5ece69865647fa913278f8b2 Mon Sep 17 00:00:00 2001 From: Yuval Greenfield Date: Fri, 4 May 2018 11:06:32 -0700 Subject: [PATCH] terminiated -> terminated (#78) --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 85f36c96..02c66f2d 100644 --- a/index.js +++ b/index.js @@ -224,7 +224,7 @@ class Pool extends EventEmitter { // remove the dead client from our list of clients this._clients = this._clients.filter(c => c !== client) if (timeoutHit) { - err.message = 'Connection terminiated due to connection timeout' + err.message = 'Connection terminated due to connection timeout' } cb(err, undefined, NOOP) } else {