Skip to content

Commit 2f1f6a1

Browse files
authored
Merge pull request #2100 from yoga1234/patch-1
add missing closing bracket
2 parents c0d638a + c658bb3 commit 2f1f6a1

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
@@ -16,7 +16,7 @@ Then if the wrapped function is called at 0ms, 200ms and 500ms, and then there a
1616

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

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

2121
```js
2222
let f = _.debounce(alert, 1000);

0 commit comments

Comments
 (0)