Skip to content

Commit

Permalink
Fix formatting error
Browse files Browse the repository at this point in the history
  • Loading branch information
TOTBWF committed Jan 13, 2020
1 parent 7b7a430 commit e89eab3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Data/Array.js
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ exports.zipWith3 = function (f) {
var l = Math.min(xs.length, ys.length, zs.length);
var result = new Array(l);
for (var i = 0; i < l; i++) {
result[i] = f(xs[i])(ys[i])(zs[i])
result[i] = f(xs[i])(ys[i])(zs[i]);
}
return result;
};
Expand Down

0 comments on commit e89eab3

Please sign in to comment.