Skip to content

Commit

Permalink
Entries: Fix code example typo (#964)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidglezz authored Oct 4, 2024
1 parent afb3c0a commit 3d473d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/entries.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const arrayEntries: Entries<typeof arrayExample> = [[0, 'a'], [1, 1]];
// Maps
const mapExample = new Map([['a', 1]]);
const mapEntries: Entries<typeof map> = [['a', 1]];
const mapEntries: Entries<typeof mapExample> = [['a', 1]];
// Sets
const setExample = new Set(['a', 1]);
Expand Down

0 comments on commit 3d473d1

Please sign in to comment.