Skip to content

Commit

Permalink
fix missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
wryk committed Nov 6, 2013
1 parent 7227882 commit 8a12ad8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -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);
}
Expand Down

0 comments on commit 8a12ad8

Please sign in to comment.