diff --git a/spec.html b/spec.html index 3d12ba870e..305c5f3140 100644 --- a/spec.html +++ b/spec.html @@ -29111,7 +29111,6 @@

String.prototype.split ( _separator_, _limit_ )

SplitMatch ( _S_, _q_, _R_ )

The abstract operation SplitMatch takes arguments _S_ (a String), _q_ (a non-negative integer), and _R_ (a String). It returns either ~not-matched~ or the end index of a match. It performs the following steps when called:

- 1. Assert: Type(_R_) is String. 1. Let _r_ be the number of code units in _R_. 1. Let _s_ be the number of code units in _S_. 1. If _q_ + _r_ > _s_, return ~not-matched~.