Skip to content

Commit c58a677

Browse files
author
Jan Kurella
committed
making jshint happy. Do not redefine a variable.
1 parent 037ef83 commit c58a677

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/thread.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535
this._resolved = 2;
3636
this._result = err;
3737

38-
for (var i = 0; i < this._errCallbacks.length; ++i) {
39-
this._errCallbacks[i](res);
38+
for (var iE = 0; iE < this._errCallbacks.length; ++iE) {
39+
this._errCallbacks[iE](res);
4040
}
4141
}
4242

0 commit comments

Comments
 (0)