From 6693416d0a1d7ff2d0b33711c40d6da906e4a966 Mon Sep 17 00:00:00 2001 From: jdalton Date: Thu, 5 Mar 2015 22:49:41 -0800 Subject: [PATCH] Tweak `_.isEmpty` and `_.size` docs. [ci skip] --- lodash.src.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lodash.src.js b/lodash.src.js index dc5f3f403..4bfd9ec4f 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -6774,8 +6774,8 @@ } /** - * Gets the size of `collection` by returning `collection.length` for - * array-like values or the number of own enumerable properties for objects. + * Gets the size of `collection` by returning its length for array-like + * values or the number of own enumerable properties for objects. * * @static * @memberOf _ @@ -8240,7 +8240,7 @@ } /** - * Checks if a value is empty. A value is considered empty unless it is an + * Checks if `value` is empty. A value is considered empty unless it is an * `arguments` object, array, string, or jQuery-like collection with a length * greater than `0` or an object with own enumerable properties. *