Skip to content

Commit

Permalink
docs: fix typo for example of debounce function (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
wokalek committed Sep 14, 2023
1 parent 84d3b11 commit 8a1886c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ const debouncedFn = debounce(expensiveCall, 200);
for (const number of [1, 2, 3]) {
console.log(await debouncedFn(number));
}
//=> 3
//=> 3
//=> 1
//=> 2
//=> 3
```
*/
Expand Down

0 comments on commit 8a1886c

Please sign in to comment.