Skip to content

Commit df6f6be

Browse files
committed
minor fixes
1 parent 3440a4e commit df6f6be

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Then if the wrapped function is called at 0ms, 200ms and 500ms, and then there a
1414

1515
...And it will get the arguments of the very last call, other calls are ignored.
1616

17-
Here's the code (uses the debounce decorator from the [Lodash library](https://lodash.com/docs/4.17.15#debounce):
17+
Here's the code for it (uses the debounce decorator from the [Lodash library](https://lodash.com/docs/4.17.15#debounce):
1818

1919
```js
2020
let f = _.debounce(alert, 1000);

0 commit comments

Comments
 (0)