Skip to content

Commit 7cc2c6a

Browse files
author
woodall
committed
Fix typo
1 parent d63c5f4 commit 7cc2c6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/arrays.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@
324324
numbers = [1, 40, 40, 40, 40, 40, 40, 40, 50, 60, 70]; num = 40;
325325
assert.strictEqual(_.indexOf(numbers, num, true), 1, '40 is in the list');
326326
assert.strictEqual(_.indexOf(numbers, 6, true), -1, '6 isnt in the list');
327-
assert.strictEqual(_.indexOf([1, 2, 5, 4, 6, 7], 5, true), -1, 'sorted indexOf doesn\'t uses binary search');
327+
assert.strictEqual(_.indexOf([1, 2, 5, 4, 6, 7], 5, true), -1, 'sorted indexOf doesn\'t use binary search');
328328
assert.ok(_.every(['1', [], {}, null], function() {
329329
return _.indexOf(numbers, num, {}) === 1;
330330
}), 'non-nums as fromIndex make indexOf assume sorted');

0 commit comments

Comments
 (0)