From 0308d4de621ab4b02605ddfa07c8572750572587 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 4 Apr 2016 11:10:25 -0700 Subject: [PATCH] Remove `skipFixed` methods from fixed arity listings. [ci skip] --- lib/fp/template/doc/wiki.jst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/fp/template/doc/wiki.jst b/lib/fp/template/doc/wiki.jst index 1e429c476..4672db9a8 100644 --- a/lib/fp/template/doc/wiki.jst +++ b/lib/fp/template/doc/wiki.jst @@ -66,16 +66,16 @@ fp.padCharsStart('-')(3)('a'); ``` Methods with a fixed arity of one:
-<%= toFuncList(mapping.aryMethod[1]) %> +<%= toFuncList(_.difference(mapping.aryMethod[1], _.keys(mapping.skipFixed))) %> Methods with a fixed arity of two:
-<%= toFuncList(mapping.aryMethod[2]) %> +<%= toFuncList(_.difference(mapping.aryMethod[2], _.keys(mapping.skipFixed))) %> Methods with a fixed arity of three:
-<%= toFuncList(mapping.aryMethod[3]) %> +<%= toFuncList(_.difference(mapping.aryMethod[3], _.keys(mapping.skipFixed))) %> Methods with a fixed arity of four:
-<%= toFuncList(mapping.aryMethod[4]) %> +<%= toFuncList(_.difference(mapping.aryMethod[4], _.keys(mapping.skipFixed))) %> #### Rearranged Arguments