Skip to content

Commit b88fa6e

Browse files
committed
Add space to class string of iterator objects
Fixes #419.
1 parent 0e3f12a commit b88fa6e

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
@@ -4034,7 +4034,7 @@ that have [=members=] with these names.
40344034

40354035
typeof SessionManager.prototype.values; // Evaluates to "function"
40364036
var it = sm.values(); // values() returns an iterator object
4037-
<!-- String(it); // Evaluates to "[object SessionManagerIterator]"
4037+
<!-- String(it); // Evaluates to "[object SessionManager Iterator]"
40384038
// TODO: https://github.com/heycam/webidl/issues/419 -->
40394039
typeof it.next; // Evaluates to "function"
40404040

@@ -11837,7 +11837,7 @@ its index is set to 0.
1183711837

1183811838
The [=class string=] of a [=default iterator object=] for a given [=interface=]
1183911839
is the result of concatenating the [=identifier=] of the [=interface=]
11840-
and the string "<code>Iterator</code>".
11840+
and the string "<code> Iterator</code>".
1184111841

1184211842

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

1190211902
The [=class string=] of an [=iterator prototype object=] for a given [=interface=]
1190311903
is the result of concatenating the [=identifier=] of the [=interface=]
11904-
and the string "<code>Iterator</code>".
11904+
and the string "<code> Iterator</code>".
1190511905

1190611906

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

0 commit comments

Comments
 (0)