From 958381d3ddeba8c2c6c0caef5a1817da7cce8b87 Mon Sep 17 00:00:00 2001 From: jdalton Date: Sun, 14 Jun 2015 18:00:22 -0700 Subject: [PATCH] Tweak `_.modArgs` docs. [ci skip] --- lodash.src.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lodash.src.js b/lodash.src.js index d03a03493..d36c1c8f7 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -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);