From 6cf15b78bc28373c1d58bcc60873dcb30dd450fc Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Wed, 6 May 2020 23:23:31 +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 2215073a..550bf52d 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 @@ -46,6 +46,6 @@ So, `debounce` is a great way to process a sequence of events: be it a sequence It waits the given time after the last call, and then runs its function, that can process the result. -Implement `debounce` decorator. +The task is to implement `debounce` decorator. Hint: that's just a few lines if you think about it :) \ No newline at end of file