Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sunesimonsen committed Jan 13, 2018
1 parent 18ad86d commit 11eb950
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/unexpected-check.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
});
}

function isProximityLessThen(a, b) {
function isProximityLessThan(a, b) {
for (var i = 0; i < Math.min(a.length, b.length); i += 1) {
if (a[i] < b[i]) {
return true;
Expand Down Expand Up @@ -204,7 +204,7 @@
}
} else {
var proximity = copyProximity();
if (isProximityLessThen(proximity, interestingInput.proximity)) {
if (isProximityLessThan(proximity, interestingInput.proximity)) {
interestingInput.input = task.args;
interestingInput.proximity = proximity;
}
Expand Down

0 comments on commit 11eb950

Please sign in to comment.