Skip to content

Commit

Permalink
Fix an off-by-one error in the new group function.
Browse files Browse the repository at this point in the history
  • Loading branch information
creationix committed Apr 27, 2010
1 parent 7e4eace commit 692c471
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/step.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ function Step() {
error = arguments[0]; error = arguments[0];
} }
// Send the other results as arguments // Send the other results as arguments
result[i + 1] = arguments[1]; result[i] = arguments[1];
if (lock) { if (lock) {
process.nextTick(check); process.nextTick(check);
return return
Expand Down

0 comments on commit 692c471

Please sign in to comment.