| Index: src/js/array.js
|
| diff --git a/src/js/array.js b/src/js/array.js
|
| index 4816dfbdf1c4729f5507f499bb77e21eebe1a2cc..b5e3e307860b6b12b6c07ed971e3750dad487db3 100644
|
| --- a/src/js/array.js
|
| +++ b/src/js/array.js
|
| @@ -1024,9 +1024,9 @@ function InnerArraySort(array, length, comparefn) {
|
| var num_non_undefined = %RemoveArrayHoles(array, length);
|
|
|
| if (num_non_undefined == -1) {
|
| - // The array is observed, or there were indexed accessors in the array.
|
| + // There were indexed accessors in the array.
|
| // Move array holes and undefineds to the end using a Javascript function
|
| - // that is safe in the presence of accessors and is observable.
|
| + // that is safe in the presence of accessors.
|
| num_non_undefined = SafeRemoveArrayHoles(array);
|
| }
|
|
|
|
|