Skip to content

Commit 08309a0

Browse files
committed
minor fixes
1 parent 6cf15b7 commit 08309a0

File tree

1 file changed

+1
-3
lines changed
  • 1-js/06-advanced-functions/09-call-apply-decorators/03-debounce

1 file changed

+1
-3
lines changed

1-js/06-advanced-functions/09-call-apply-decorators/03-debounce/solution.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,5 @@ function debounce(func, ms) {
99

1010
```
1111

12-
A call to `debounce` returns a wrapper.
13-
14-
When called, it schedules the original function call after given `ms` and clears the previous such timeout.
12+
A call to `debounce` returns a wrapper. When called, it schedules the original function call after given `ms` and cancels the previous such timeout.
1513

0 commit comments

Comments
 (0)