diff --git a/spec.html b/spec.html index 910d8eeca4..2871f040e5 100644 --- a/spec.html +++ b/spec.html @@ -39738,7 +39738,7 @@

Array.prototype.some ( _callback_ [ , _thisArg_ ] )

Array.prototype.sort ( _comparator_ )

-

This method sorts the elements of this array. The sort must be stable (that is, elements that compare equal must remain in their original order). If _comparator_ is not *undefined*, it should be a function that accepts two arguments _x_ and _y_ and returns a negative Number if _x_ < _y_, a positive Number if _x_ > _y_, or a zero otherwise.

+

This method sorts the elements of this array. If _comparator_ is not *undefined*, it should be a function that accepts two arguments _x_ and _y_ and returns a negative Number if _x_ < _y_, a positive Number if _x_ > _y_, or a zero otherwise.

It performs the following steps when called:

1. [id="step-array-sort-comparefn"] If _comparator_ is not *undefined* and IsCallable(_comparator_) is *false*, throw a *TypeError* exception.