From f48b8d6d91c1913bc69f24aac9dbeeabc443f8df Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 24 Jul 2015 17:39:56 -0700 Subject: [PATCH] Cleanup `_.some` docs. [ci skip] --- lodash.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lodash.js b/lodash.js index 658f7d3a4..388b532f3 100644 --- a/lodash.js +++ b/lodash.js @@ -6408,9 +6408,8 @@ /** * Checks if `predicate` returns truthy for **any** element of `collection`. - * The function returns as soon as it finds a passing value and doesn't iterate - * over the entire collection. The predicate is invoked with three arguments: - * (value, index|key, collection). + * Iteration is stopped once `predicate` returns truthy. The predicate is + * invoked with three arguments: (value, index|key, collection). * * @static * @memberOf _