aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcnlevy2014-02-19 22:13:24 +0200
committerCaitlin Potter2014-02-20 14:52:25 -0500
commit3193a3a5af731a4773feadc23d91c5ab63ef9fda (patch)
treedff1d75fd365fa909d133c57beb09454ea856f5e
parent6082e2ad16d941a070fda16212d7a24e3dbb80ad (diff)
downloadangular.js-3193a3a5af731a4773feadc23d91c5ab63ef9fda.tar.bz2
docs(core): add note that isObject returns true for arrays
Closes #6353
-rw-r--r--src/Angular.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Angular.js b/src/Angular.js
index 21595cd6..b2905ed9 100644
--- a/src/Angular.js
+++ b/src/Angular.js
@@ -445,7 +445,7 @@ function isDefined(value){return typeof value !== 'undefined';}
*
* @description
* Determines if a reference is an `Object`. Unlike `typeof` in JavaScript, `null`s are not
- * considered to be objects.
+ * considered to be objects. Note that JavaScript arrays are objects.
*
* @param {*} value Reference to check.
* @returns {boolean} True if `value` is an `Object` but not `null`.