Skip to content

Commit e8dbc2d

Browse files
Fix typo in (Readonly)Set.keys comment (fixes #40164) (#40176)
1 parent 585603e commit e8dbc2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/es2015.iterable.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ interface Set<T> {
154154
*/
155155
entries(): IterableIterator<[T, T]>;
156156
/**
157-
* Despite its name, returns an iterable of the values in the set,
157+
* Despite its name, returns an iterable of the values in the set.
158158
*/
159159
keys(): IterableIterator<T>;
160160

@@ -174,7 +174,7 @@ interface ReadonlySet<T> {
174174
entries(): IterableIterator<[T, T]>;
175175

176176
/**
177-
* Despite its name, returns an iterable of the values in the set,
177+
* Despite its name, returns an iterable of the values in the set.
178178
*/
179179
keys(): IterableIterator<T>;
180180

0 commit comments

Comments
 (0)