From e2280db917bd67656c6373c9915b86d8276dc260 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 24 Jan 2016 09:47:57 -0800 Subject: [PATCH] Fix documented iteratee arg count of `_.partition`. [ci skip] --- lodash.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lodash.js b/lodash.js index c7466d33f..77914a788 100644 --- a/lodash.js +++ b/lodash.js @@ -7757,9 +7757,9 @@ /** * Creates an array of elements split into two groups, the first of which - * contains elements `predicate` returns truthy for, while the second of which - * contains elements `predicate` returns falsey for. The predicate is invoked - * with three arguments: (value, index|key, collection). + * contains elements `predicate` returns truthy for, the second of which + * contains elements `predicate` returns falsey for. The predicate is + * invoked with one argument: (value). * * @static * @memberOf _