diff --git a/src/lang/array.js b/src/lang/array.js index 8ab6865..3789389 100644 --- a/src/lang/array.js +++ b/src/lang/array.js @@ -157,7 +157,7 @@ Array.from = $A; /** * Array#compact() -> Array - * Trims the array of `null`, `undefined`, or other "falsy" values. + * Returns a copy of the array without any `null` or `undefined` values. **/ function compact() { return this.select(function(value) {