Blob Blame History Raw
From 8a12ad8d352336cd1ab58785e490c3d8ae129a47 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Mathieu=20Gall=C3=A9-Tessonneau?=
 <mathieu.galletessonneau@gmail.com>
Date: Wed, 6 Nov 2013 20:59:06 +0100
Subject: [PATCH 1/2] fix missing semicolon

---
 index.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/index.js b/index.js
index 932d404..c2cbe46 100644
--- a/index.js
+++ b/index.js
@@ -142,7 +142,7 @@ Batch.prototype.end = function(cb){
         duration: end - start
       });
 
-      if (--pending) next()
+      if (--pending) next();
       else if(!throws) cb(errors, results);
       else cb(null, results);
     }
-- 
1.8.5.3