minor fixes

This commit is contained in:
Ilya Kantor 2020-05-06 23:24:22 +03:00
parent 6cf15b78bc
commit 08309a07f6

View file

@ -9,7 +9,5 @@ function debounce(func, ms) {
``` ```
A call to `debounce` returns a wrapper. A call to `debounce` returns a wrapper. When called, it schedules the original function call after given `ms` and cancels the previous such timeout.
When called, it schedules the original function call after given `ms` and clears the previous such timeout.