From 6672a4f9427f82d2602f6ef5205d1752c3667bf4 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sat, 24 Dec 2016 11:20:46 -0600 Subject: [PATCH] Update fp doc template for `fp.reduceRight` iteratee argument order. [ci skip] --- lib/fp/template/doc/wiki.jst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/fp/template/doc/wiki.jst b/lib/fp/template/doc/wiki.jst index dca1245af..f50ead472 100644 --- a/lib/fp/template/doc/wiki.jst +++ b/lib/fp/template/doc/wiki.jst @@ -64,7 +64,7 @@ Methods that cap iteratees to one argument:
Methods that cap iteratees to two arguments:
<%= toFuncList(_.keys(_.pickBy(mapping.iterateeAry, _.partial(_.eq, _, 2)))) %> -The iteratee of `mapKeys` is invoked with one argument: (key) +The iteratee of `mapKeys` is capped to one argument: `(key)` #### Fixed Arity @@ -135,6 +135,8 @@ Methods with custom argument orders:
return ' * `_.' + methodName + '` has an order of ' + toArgOrder(orders); }).join('\n') %> +The iteratee of `reduceRight` has an argument order of: `(b, a)` + #### New Methods Not all variadic methods have corresponding new method variants. Feel free to