Skip to content

Commit 0ceef6f

Browse files
capital I for X Iterator objects
1 parent aedc649 commit 0ceef6f

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

spec.html

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3320,7 +3320,7 @@ <h1>Well-Known Intrinsic Objects</h1>
33203320
<td>
33213321
</td>
33223322
<td>
3323-
The prototype of Array iterator objects (<emu-xref href="#sec-array-iterator-objects"></emu-xref>)
3323+
The prototype of Array Iterator objects (<emu-xref href="#sec-array-iterator-objects"></emu-xref>)
33243324
</td>
33253325
</tr>
33263326
<tr>
@@ -3706,7 +3706,7 @@ <h1>Well-Known Intrinsic Objects</h1>
37063706
<td>
37073707
</td>
37083708
<td>
3709-
The prototype of Map iterator objects (<emu-xref href="#sec-map-iterator-objects"></emu-xref>)
3709+
The prototype of Map Iterator objects (<emu-xref href="#sec-map-iterator-objects"></emu-xref>)
37103710
</td>
37113711
</tr>
37123712
<tr>
@@ -3837,7 +3837,7 @@ <h1>Well-Known Intrinsic Objects</h1>
38373837
<td>
38383838
</td>
38393839
<td>
3840-
The prototype of RegExp String iterator objects (<emu-xref href="#sec-regexp-string-iterator-objects"></emu-xref>)
3840+
The prototype of RegExp String Iterator objects (<emu-xref href="#sec-regexp-string-iterator-objects"></emu-xref>)
38413841
</td>
38423842
</tr>
38433843
<tr>
@@ -3858,7 +3858,7 @@ <h1>Well-Known Intrinsic Objects</h1>
38583858
<td>
38593859
</td>
38603860
<td>
3861-
The prototype of Set iterator objects (<emu-xref href="#sec-set-iterator-objects"></emu-xref>)
3861+
The prototype of Set Iterator objects (<emu-xref href="#sec-set-iterator-objects"></emu-xref>)
38623862
</td>
38633863
</tr>
38643864
<tr>
@@ -3890,7 +3890,7 @@ <h1>Well-Known Intrinsic Objects</h1>
38903890
<td>
38913891
</td>
38923892
<td>
3893-
The prototype of String iterator objects (<emu-xref href="#sec-string-iterator-objects"></emu-xref>)
3893+
The prototype of String Iterator objects (<emu-xref href="#sec-string-iterator-objects"></emu-xref>)
38943894
</td>
38953895
</tr>
38963896
<tr>
@@ -35659,13 +35659,13 @@ <h1>length</h1>
3565935659

3566035660
<emu-clause id="sec-string-iterator-objects">
3566135661
<h1>String Iterator Objects</h1>
35662-
<p>A <dfn variants="String iterators,String iterator object,String iterator objects">String iterator</dfn> is an object that represents a specific iteration over some specific String instance object. There is not a named constructor for String iterator objects. Instead, String iterator objects are created by calling certain methods of String instance objects.</p>
35662+
<p>A <dfn variants="String Iterators,String Iterator object,String Iterator objects">String Iterator</dfn> is an object that represents a specific iteration over some specific String instance object. There is not a named constructor for String Iterator objects. Instead, String Iterator objects are created by calling certain methods of String instance objects.</p>
3566335663

3566435664
<emu-clause id="sec-%stringiteratorprototype%-object">
3566535665
<h1>The %StringIteratorPrototype% Object</h1>
3566635666
<p>The <dfn>%StringIteratorPrototype%</dfn> object:</p>
3566735667
<ul>
35668-
<li>has properties that are inherited by all String iterator objects.</li>
35668+
<li>has properties that are inherited by all String Iterator objects.</li>
3566935669
<li>is an ordinary object.</li>
3567035670
<li>has a [[Prototype]] internal slot whose value is %Iterator.prototype%.</li>
3567135671
<li>has the following properties:</li>
@@ -38699,7 +38699,7 @@ <h1>lastIndex</h1>
3869938699

3870038700
<emu-clause id="sec-regexp-string-iterator-objects">
3870138701
<h1>RegExp String Iterator Objects</h1>
38702-
<p>A <dfn variants="RegExp String iterators,RegExp String iterator object,RegExp String iterator objects">RegExp String iterator</dfn> is an object that represents a specific iteration over some specific String instance object, matching against some specific RegExp instance object. There is not a named constructor for RegExp String iterator objects. Instead, RegExp String iterator objects are created by calling certain methods of RegExp instance objects.</p>
38702+
<p>A <dfn variants="RegExp String Iterators,RegExp String Iterator object,RegExp String Iterator objects">RegExp String Iterator</dfn> is an object that represents a specific iteration over some specific String instance object, matching against some specific RegExp instance object. There is not a named constructor for RegExp String Iterator objects. Instead, RegExp String Iterator objects are created by calling certain methods of RegExp instance objects.</p>
3870338703

3870438704
<emu-clause id="sec-createregexpstringiterator" type="abstract operation" oldids="sec-properties-of-regexp-string-iterator-instances,table-regexp-string-iterator-instance-slots">
3870538705
<h1>
@@ -38734,7 +38734,7 @@ <h1>
3873438734
<h1>The %RegExpStringIteratorPrototype% Object</h1>
3873538735
<p>The <dfn>%RegExpStringIteratorPrototype%</dfn> object:</p>
3873638736
<ul>
38737-
<li>has properties that are inherited by all RegExp String iterator objects.</li>
38737+
<li>has properties that are inherited by all RegExp String Iterator objects.</li>
3873838738
<li>is an ordinary object.</li>
3873938739
<li>has a [[Prototype]] internal slot whose value is %Iterator.prototype%.</li>
3874038740
<li>has the following properties:</li>
@@ -40268,7 +40268,7 @@ <h1>length</h1>
4026840268

4026940269
<emu-clause id="sec-array-iterator-objects">
4027040270
<h1>Array Iterator Objects</h1>
40271-
<p>An <dfn variants="Array iterators,Array iterator object,Array iterator objects">Array iterator</dfn> is an object that represents a specific iteration over some specific Array instance object. There is not a named constructor for Array iterator objects. Instead, Array iterator objects are created by calling certain methods of Array instance objects.</p>
40271+
<p>An <dfn variants="Array Iterators,Array Iterator object,Array Iterator objects">Array Iterator</dfn> is an object that represents a specific iteration over some specific Array instance object. There is not a named constructor for Array Iterator objects. Instead, Array Iterator objects are created by calling certain methods of Array instance objects.</p>
4027240272

4027340273
<emu-clause id="sec-createarrayiterator" type="abstract operation" oldids="sec-properties-of-array-iterator-instances,table-48,table-internal-slots-of-array-iterator-instances">
4027440274
<h1>
@@ -40313,7 +40313,7 @@ <h1>
4031340313
<h1>The %ArrayIteratorPrototype% Object</h1>
4031440314
<p>The <dfn>%ArrayIteratorPrototype%</dfn> object:</p>
4031540315
<ul>
40316-
<li>has properties that are inherited by all Array iterator objects.</li>
40316+
<li>has properties that are inherited by all Array Iterator objects.</li>
4031740317
<li>is an ordinary object.</li>
4031840318
<li>has a [[Prototype]] internal slot whose value is %Iterator.prototype%.</li>
4031940319
<li>has the following properties:</li>
@@ -42105,7 +42105,7 @@ <h1>Map.prototype.clear ( )</h1>
4210542105
1. Return *undefined*.
4210642106
</emu-alg>
4210742107
<emu-note>
42108-
<p>The existing [[MapData]] List is preserved because there may be existing Map iterator objects that are suspended midway through iterating over that List.</p>
42108+
<p>The existing [[MapData]] List is preserved because there may be existing Map Iterator objects that are suspended midway through iterating over that List.</p>
4210942109
</emu-note>
4211042110
</emu-clause>
4211142111

@@ -42262,7 +42262,7 @@ <h1>Properties of Map Instances</h1>
4226242262

4226342263
<emu-clause id="sec-map-iterator-objects">
4226442264
<h1>Map Iterator Objects</h1>
42265-
<p>A <dfn variants="Map iterators,Map iterator object,Map iterator objects">Map iterator</dfn> is an object, that represents a specific iteration over some specific Map instance object. There is not a named constructor for Map iterator objects. Instead, map iterator objects are created by calling certain methods of Map instance objects.</p>
42265+
<p>A <dfn variants="Map Iterators,Map Iterator object,Map Iterator objects">Map Iterator</dfn> is an object, that represents a specific iteration over some specific Map instance object. There is not a named constructor for Map Iterator objects. Instead, map iterator objects are created by calling certain methods of Map instance objects.</p>
4226642266

4226742267
<emu-clause id="sec-createmapiterator" type="abstract operation" oldids="sec-properties-of-map-iterator-instances,table-50,table-internal-slots-of-map-iterator-instances">
4226842268
<h1>
@@ -42304,7 +42304,7 @@ <h1>
4230442304
<h1>The %MapIteratorPrototype% Object</h1>
4230542305
<p>The <dfn>%MapIteratorPrototype%</dfn> object:</p>
4230642306
<ul>
42307-
<li>has properties that are inherited by all Map iterator objects.</li>
42307+
<li>has properties that are inherited by all Map Iterator objects.</li>
4230842308
<li>is an ordinary object.</li>
4230942309
<li>has a [[Prototype]] internal slot whose value is %Iterator.prototype%.</li>
4231042310
<li>has the following properties:</li>
@@ -42571,7 +42571,7 @@ <h1>Set.prototype.clear ( )</h1>
4257142571
1. Return *undefined*.
4257242572
</emu-alg>
4257342573
<emu-note>
42574-
<p>The existing [[SetData]] List is preserved because there may be existing Set iterator objects that are suspended midway through iterating over that List.</p>
42574+
<p>The existing [[SetData]] List is preserved because there may be existing Set Iterator objects that are suspended midway through iterating over that List.</p>
4257542575
</emu-note>
4257642576
</emu-clause>
4257742577

@@ -42894,7 +42894,7 @@ <h1>Properties of Set Instances</h1>
4289442894

4289542895
<emu-clause id="sec-set-iterator-objects">
4289642896
<h1>Set Iterator Objects</h1>
42897-
<p>A <dfn variants="Set iterators,Set iterator object,Set iterator objects">Set iterator</dfn> is an ordinary object, with the structure defined below, that represents a specific iteration over some specific Set instance object. There is not a named constructor for Set iterator objects. Instead, set iterator objects are created by calling certain methods of Set instance objects.</p>
42897+
<p>A <dfn variants="Set Iterators,Set Iterator object,Set Iterator objects">Set Iterator</dfn> is an ordinary object, with the structure defined below, that represents a specific iteration over some specific Set instance object. There is not a named constructor for Set Iterator objects. Instead, set iterator objects are created by calling certain methods of Set instance objects.</p>
4289842898

4289942899
<emu-clause id="sec-createsetiterator" type="abstract operation" oldids="sec-properties-of-set-iterator-instances,table-51,table-internal-slots-of-set-iterator-instances">
4290042900
<h1>
@@ -42934,7 +42934,7 @@ <h1>
4293442934
<h1>The %SetIteratorPrototype% Object</h1>
4293542935
<p>The <dfn>%SetIteratorPrototype%</dfn> object:</p>
4293642936
<ul>
42937-
<li>has properties that are inherited by all Set iterator objects.</li>
42937+
<li>has properties that are inherited by all Set Iterator objects.</li>
4293842938
<li>is an ordinary object.</li>
4293942939
<li>has a [[Prototype]] internal slot whose value is %Iterator.prototype%.</li>
4294042940
<li>has the following properties:</li>
@@ -47062,7 +47062,7 @@ <h1>%AsyncIteratorPrototype% [ %Symbol.asyncIterator% ] ( )</h1>
4706247062

4706347063
<emu-clause id="sec-async-from-sync-iterator-objects">
4706447064
<h1>Async-from-Sync Iterator Objects</h1>
47065-
<p>An <dfn variants="Async-from-Sync Iterator objects">Async-from-Sync Iterator object</dfn> is an async iterator that adapts a specific synchronous iterator. Async-from-Sync Iterator objects are never directly accessible to ECMAScript code. There is not a named constructor for Async-from-Sync Iterator objects. Instead, Async-from-Sync iterator objects are created by the CreateAsyncFromSyncIterator abstract operation as needed.</p>
47065+
<p>An <dfn variants="Async-from-Sync Iterator objects">Async-from-Sync Iterator object</dfn> is an async iterator that adapts a specific synchronous iterator. Async-from-Sync Iterator objects are never directly accessible to ECMAScript code. There is not a named constructor for Async-from-Sync Iterator objects. Instead, Async-from-Sync Iterator objects are created by the CreateAsyncFromSyncIterator abstract operation as needed.</p>
4706647066

4706747067
<emu-clause id="sec-createasyncfromsynciterator" type="abstract operation">
4706847068
<h1>

0 commit comments

Comments
 (0)