From f9a3e6671690cc3746b62e2c3f5a534e41d95fdc Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 10 Jan 2016 12:38:02 -0800 Subject: [PATCH] Update `_.unzipWith` and `_.zipWith` iteratee docs. [ci skip] --- lodash.js | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/lodash.js b/lodash.js index fb47e3786..409ffa647 100644 --- a/lodash.js +++ b/lodash.js @@ -6734,9 +6734,8 @@ /** * This method is like `_.unzip` except that it accepts `iteratee` to specify - * how regrouped values should be combined. The iteratee is invoked with four - * arguments: (accumulator, value, index, group). The first element of each - * group is used as the initial `accumulator` value. + * how regrouped values should be combined. The iteratee is invoked with the + * elements of each group: (...group). * * @static * @memberOf _ @@ -6906,9 +6905,8 @@ /** * This method is like `_.zip` except that it accepts `iteratee` to specify - * how grouped values should be combined. The iteratee is invoked with four - * arguments: (accumulator, value, index, group). The first element of each - * group is used as the initial `accumulator` value. + * how grouped values should be combined. The iteratee is invoked with the + * elements of each group: (...group). * * @static * @memberOf _