Skip to content

Commit 31871e8

Browse files
authored
Include stringification of iterable in example
Possible now #419 is fixed.
1 parent e6ae134 commit 31871e8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

index.bs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4233,8 +4233,7 @@ that have [=members=] with these names.
42334233

42344234
typeof SessionManager.prototype.values; // Evaluates to "function"
42354235
var it = sm.values(); // values() returns an iterator object
4236-
<!-- String(it); // Evaluates to "[object SessionManager Iterator]"
4237-
// TODO: https://github.com/heycam/webidl/issues/419 -->
4236+
String(it); // Evaluates to "[object SessionManager Iterator]"
42384237
typeof it.next; // Evaluates to "function"
42394238

42404239
// This loop will log "anna" and then "brian".

0 commit comments

Comments
 (0)