From 08309a07f684048d3bda2b054b891c1bb997453d Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Wed, 6 May 2020 23:24:22 +0300 Subject: [PATCH] minor fixes --- .../09-call-apply-decorators/03-debounce/solution.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/1-js/06-advanced-functions/09-call-apply-decorators/03-debounce/solution.md b/1-js/06-advanced-functions/09-call-apply-decorators/03-debounce/solution.md index a2d34619..83e75f31 100644 --- a/1-js/06-advanced-functions/09-call-apply-decorators/03-debounce/solution.md +++ b/1-js/06-advanced-functions/09-call-apply-decorators/03-debounce/solution.md @@ -9,7 +9,5 @@ function debounce(func, ms) { ``` -A call to `debounce` returns a wrapper. - -When called, it schedules the original function call after given `ms` and clears the previous such timeout. +A call to `debounce` returns a wrapper. When called, it schedules the original function call after given `ms` and cancels the previous such timeout.