From b61b674fec91f9a6186516de6a1b261cc5143600 Mon Sep 17 00:00:00 2001 From: Mohammed Nauage Date: Sun, 31 Jan 2016 23:50:57 -0500 Subject: [PATCH] Remove sorted behavior from `_.indexOf` docs. [ci skip] --- lodash.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index 71476698c..bdca1488b 100644 --- a/lodash.js +++ b/lodash.js @@ -5891,8 +5891,7 @@ * Gets the index at which the first occurrence of `value` is found in `array` * using [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) * for equality comparisons. If `fromIndex` is negative, it's used as the offset - * from the end of `array`. If `array` is sorted providing `true` for `fromIndex` - * performs a faster binary search. + * from the end of `array`. * * @static * @memberOf _