Add missing space.

This commit is contained in:
Peter Burns
2017-04-28 12:50:35 -07:00
parent 721f229b0b
commit 0e74053abc

View File

@@ -112,7 +112,7 @@ interface Map<K, V> {
interface ReadonlyMap<K, V> {
/** Returns an iterable of entries in the map. */
[Symbol.iterator](): IterableIterator<[K,V]>;
[Symbol.iterator](): IterableIterator<[K, V]>;
/**
* Returns an iterable of key, value pairs for every entry in the map.