Skip to content

Commit 4fcfaea

Browse files
TimothyGutobie
authored andcommitted
Add space to class string of iterator objects
Fixes #419.
1 parent 9842dd4 commit 4fcfaea

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

index.bs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4087,7 +4087,7 @@ that have [=members=] with these names.
40874087

40884088
typeof SessionManager.prototype.values; // Evaluates to "function"
40894089
var it = sm.values(); // values() returns an iterator object
4090-
<!-- String(it); // Evaluates to "[object SessionManagerIterator]"
4090+
<!-- String(it); // Evaluates to "[object SessionManager Iterator]"
40914091
// TODO: https://github.com/heycam/webidl/issues/419 -->
40924092
typeof it.next; // Evaluates to "function"
40934093

@@ -11913,7 +11913,7 @@ its index is set to 0.
1191311913

1191411914
The [=class string=] of a [=default iterator object=] for a given [=interface=]
1191511915
is the result of concatenating the [=identifier=] of the [=interface=]
11916-
and the string "<code>Iterator</code>".
11916+
and the string "<code> Iterator</code>".
1191711917

1191811918

1191911919
<h5 id="es-iterator-prototype-object">Iterator prototype object</h5>
@@ -11977,7 +11977,7 @@ must be {{%IteratorPrototype%}}.
1197711977

1197811978
The [=class string=] of an [=iterator prototype object=] for a given [=interface=]
1197911979
is the result of concatenating the [=identifier=] of the [=interface=]
11980-
and the string "<code>Iterator</code>".
11980+
and the string "<code> Iterator</code>".
1198111981

1198211982

1198311983
<h4 id="es-maplike">Maplike declarations</h4>

0 commit comments

Comments
 (0)