Skip to content

Commit 6a75377

Browse files
cherryblossom000Kingwl
authored andcommitted
Fix typo in (Readonly)Set.keys comment (fixes microsoft#40164) (microsoft#40176)
1 parent ef08789 commit 6a75377

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)