From 475c86d100808a1a08445ced8a784af615b1a69d Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 2 Nov 2014 23:43:10 -0800 Subject: [PATCH] Tweak code comments. [ci skip] --- lodash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index fadf17055..7f2b1cf5a 100644 --- a/lodash.js +++ b/lodash.js @@ -2809,7 +2809,7 @@ function wrapper() { // avoid `arguments` object use disqualifying optimizations by - // converting it to an array before passing it to `composeArgs` + // converting it to an array before providing it to `composeArgs` var argsIndex = -1, argsLength = arguments.length, leftIndex = -1, @@ -9715,7 +9715,7 @@ * // => [3, 6, 4] * * _.times(3, function(n) { mage.castSpell(n); }); - * // => invokes `mage.castSpell(n)` three times, passing `n` of `0`, `1`, and `2` respectively + * // => invokes `mage.castSpell(n)` three times with `n` of `0`, `1`, and `2` respectively * * _.times(3, function(n) { this.cast(n); }, mage); * // => also invokes `mage.castSpell(n)` three times