Fix typo in (Readonly)Set.keys comment (fixes #40164) (#40176)

This commit is contained in:
cherryblossom000 2020-08-22 02:15:29 +10:00 committed by GitHub
parent 585603e934
commit e8dbc2dd07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -154,7 +154,7 @@ interface Set<T> {
*/
entries(): IterableIterator<[T, T]>;
/**
* Despite its name, returns an iterable of the values in the set,
* Despite its name, returns an iterable of the values in the set.
*/
keys(): IterableIterator<T>;
@ -174,7 +174,7 @@ interface ReadonlySet<T> {
entries(): IterableIterator<[T, T]>;
/**
* Despite its name, returns an iterable of the values in the set,
* Despite its name, returns an iterable of the values in the set.
*/
keys(): IterableIterator<T>;