From 234e693d924576db77089b25159b47233d98e8e4 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 20 Mar 2016 11:29:22 -0700 Subject: [PATCH] Flip priority of "object" and "collection" in `_.isEmpty` doc description. [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index c80920650..db04ca13f 100644 --- a/lodash.js +++ b/lodash.js @@ -10134,7 +10134,7 @@ } /** - * Checks if `value` is an empty collection or object. A value is considered + * Checks if `value` is an empty object or collection. A value is considered * empty if it's an `arguments` object, array, string, or jQuery-like collection * with a length of `0` or has no own enumerable string keyed properties. *