From 7a12ffaef0dee46167f30f80339e21f01afd2e2a Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Mon, 5 Nov 2018 07:01:01 +0000 Subject: [PATCH] fix #23 silly syntax error fixed (missing paren) --- examples/production.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/production.js b/examples/production.js index e25a2d3..f49db1b 100644 --- a/examples/production.js +++ b/examples/production.js @@ -84,7 +84,7 @@ function fooCheckDb(domains, cb) { }); if (!passCheck) { - cb(new Error('domain not allowed'); + cb(new Error('domain not allowed')); } else { cb(null, userAgrees, userEmail); }