From 1b53b5f9eb193e054ef26df8b316bf6f84bc891d Mon Sep 17 00:00:00 2001 From: jdalton Date: Sun, 5 Apr 2015 13:19:53 -0500 Subject: [PATCH] Cleanup doc block for `_.support.nonEnumArgs`. [ci skip] --- lodash.src.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.src.js b/lodash.src.js index 86cf2eea1..153ba5be1 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -1132,8 +1132,8 @@ * In Firefox < 4, IE < 9, PhantomJS, and Safari < 5.1 `arguments` object * indexes are non-enumerable. Chrome < 25 and Node.js < 0.11.0 treat * `arguments` object indexes as non-enumerable and fail `hasOwnProperty` - * checks for indexes that exceed their function's formal parameters with - * associated values of `0`. + * checks for indexes that exceed the number of function parameters and + * whose associated argument values are `0`. * * @memberOf _.support * @type boolean