minor fixes

This commit is contained in:
Ilya Kantor 2020-05-06 23:23:31 +03:00
parent 9bd640c414
commit 6cf15b78bc

View file

@ -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 :)