diff --git a/lib/fp/template/doc/wiki.jst b/lib/fp/template/doc/wiki.jst
index d5be1124c..a8e7a0624 100644
--- a/lib/fp/template/doc/wiki.jst
+++ b/lib/fp/template/doc/wiki.jst
@@ -75,35 +75,35 @@ convert each method.
#### Capped Iteratee Arguments
-Methods which provide iteratees one argument:
+Methods that cap iteratees to one argument:
<%= toFuncList(_.keys(_.pick(mapping.iterateeAry, _.partial(_.eq, _, 1)))) %>
-Methods which provide iteratees two arguments:
+Methods that cap iteratees to two arguments:
<%= toFuncList(_.keys(_.pick(mapping.iterateeAry, _.partial(_.eq, _, 2)))) %>
#### Fixed Arity
-Methods with arity fixed to one argument:
+Methods with a fixed arity of one:
<%= toFuncList(mapping.aryMethod[1]) %>
-Methods with arity fixed to two arguments:
+Methods with a fixed arity of two:
<%= toFuncList(mapping.aryMethod[2]) %>
-Methods with arity fixed to three arguments:
+Methods with a fixed arity of three:
<%= toFuncList(mapping.aryMethod[3]) %>
-Methods with arity fixed to four arguments:
+Methods with a fixed arity of four:
<%= toFuncList(mapping.aryMethod[4]) %>
#### Rearranged Arguments
-Methods fixed to two arguments have an argument order of
+Methods with a fixed arity of two have an argument order of:
<%= toArgOrder(mapping.aryRearg[2]) %>
-Methods fixed to three arguments have an argument order of
+Methods with a fixed arity of three have an argument order of:
<%= toArgOrder(mapping.aryRearg[3]) %>
-Methods fixed to four arguments have an argument order of
+Methods with a fixed arity of four have an argument order of:
<%= toArgOrder(mapping.aryRearg[4]) %>
Methods with custom argument orders: