From c41ad1cf7a1d01c964434f987e2b9facc1229730 Mon Sep 17 00:00:00 2001 From: Bronius Motekaitis Date: Thu, 4 Sep 2014 10:40:48 -0500 Subject: [PATCH] Typo: 'suppy' becomes 'supply' in connection failure message --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 8e84239..4f556dc 100644 --- a/index.js +++ b/index.js @@ -34,7 +34,7 @@ hyena.models = {}; hyena.createConnection = function (dsnString, options, callback) { if ('string' !== typeof(dsnString)) { - throw new Error('You must suppy a connection string'); + throw new Error('You must supply a connection string'); } var dsn = parseDSN(dsnString);