From df6f6be420d7e569193ee369186dad61b24fef0f Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Wed, 6 May 2020 23:21:13 +0300 Subject: [PATCH] minor fixes --- .../09-call-apply-decorators/03-debounce/task.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/06-advanced-functions/09-call-apply-decorators/03-debounce/task.md b/1-js/06-advanced-functions/09-call-apply-decorators/03-debounce/task.md index 27511dc3..46924b8f 100644 --- a/1-js/06-advanced-functions/09-call-apply-decorators/03-debounce/task.md +++ b/1-js/06-advanced-functions/09-call-apply-decorators/03-debounce/task.md @@ -14,7 +14,7 @@ Then if the wrapped function is called at 0ms, 200ms and 500ms, and then there a ...And it will get the arguments of the very last call, other calls are ignored. -Here's the code (uses the debounce decorator from the [Lodash library](https://lodash.com/docs/4.17.15#debounce): +Here's the code for it (uses the debounce decorator from the [Lodash library](https://lodash.com/docs/4.17.15#debounce): ```js let f = _.debounce(alert, 1000);