From d9f0a15dd556fb125dc9c394c0d10efcedf0133b Mon Sep 17 00:00:00 2001 From: tjcrowder Date: Mon, 7 Sep 2009 13:00:54 +0100 Subject: [PATCH] doc: very minor clarification of Array#size --- src/lang/array.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lang/array.js b/src/lang/array.js index f95aee7..1df9322 100644 --- a/src/lang/array.js +++ b/src/lang/array.js @@ -291,7 +291,8 @@ Array.from = $A; /** related to: Enumerable#size * Array#size() -> Number - * Returns the size of the array. + * + * Returns the size of the array (e.g., `array.length`). * * This is just a local optimization of the mixed-in [[Enumerable#size]] * which avoids array cloning and uses the array's native length property.