From 2fa398d4ac6d11321eb5b73cd4bb308afb83d010 Mon Sep 17 00:00:00 2001 From: Timothy Gu Date: Sun, 3 Dec 2017 12:23:07 -0800 Subject: [PATCH] Add space to class string of iterator objects Fixes #419. --- index.bs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.bs b/index.bs index 9129c914b..b99194dac 100644 --- a/index.bs +++ b/index.bs @@ -4038,7 +4038,7 @@ that have [=members=] with these names. typeof SessionManager.prototype.values; // Evaluates to "function" var it = sm.values(); // values() returns an iterator object - typeof it.next; // Evaluates to "function" @@ -11854,7 +11854,7 @@ its index is set to 0. The [=class string=] of a [=default iterator object=] for a given [=interface=] is the result of concatenating the [=identifier=] of the [=interface=] -and the string "Iterator". +and the string " Iterator".
Iterator prototype object
@@ -11918,7 +11918,7 @@ must be {{%IteratorPrototype%}}. The [=class string=] of an [=iterator prototype object=] for a given [=interface=] is the result of concatenating the [=identifier=] of the [=interface=] -and the string "Iterator". +and the string " Iterator".

Maplike declarations