Tweak _.modArgs docs. [ci skip]

This commit is contained in:
jdalton
2015-06-14 18:00:22 -07:00
parent 0a165675ce
commit 958381d3dd

View File

@@ -8032,7 +8032,8 @@
}
/**
* Creates a function that runs each argument through a transform function.
* Creates a function that runs each argument through a corresponding
* transform function.
*
* @static
* @memberOf _
@@ -8052,7 +8053,7 @@
* }
*
* var modded = _.modArgs(function(x, y) {
* return [x , y];
* return [x, y];
* }, square, doubled);
*
* modded(1, 2);