Skip to content

Commit 7a175d7

Browse files
committed
Merge pull request purescript#1144 from sinelaw/master
fix bug in Prelude.js: ordArrayImpl
2 parents 3784481 + 6a5bb97 commit 7a175d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/prelude/js/Prelude.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ exports.eqArrayImpl = function(f) {
8080
};
8181

8282
exports.ordArrayImpl = function(f) {
83-
return function (ys) {
83+
return function (xs) {
8484
return function (ys) {
8585
var i = 0;
8686
while (i < xs.length && i < ys.length) {

0 commit comments

Comments
 (0)