Skip to content

Commit

Permalink
Fix typo in usage example (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
PopGoesTheWza committed Mar 8, 2021
1 parent 5621e9e commit 1cbd519
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/entry.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const arrayEntryNumber: Entry<typeof arrayExample> = [1, 1];
// Maps
const mapExample = new Map([['a', 1]]);
const mapEntry: Entry<typeof map> = ['a', 1];
const mapEntry: Entry<typeof mapExample> = ['a', 1];
// Sets
const setExample = new Set(['a', 1]);
Expand Down

0 comments on commit 1cbd519

Please sign in to comment.