From d043c1544d2fafecb7e15e93e5a2cb139270690d Mon Sep 17 00:00:00 2001 From: davhojt Date: Mon, 20 Jun 2022 12:21:44 +0300 Subject: [PATCH] docs(debounce): correct grammar --- subjects/debounce/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/subjects/debounce/README.md b/subjects/debounce/README.md index e9ae5c7f..e05f7d9f 100644 --- a/subjects/debounce/README.md +++ b/subjects/debounce/README.md @@ -2,12 +2,12 @@ ### Instructions -Create two functions that will work like `_.debounce` from lodash +Create two functions that will work like `_.debounce` from lodash. -- `debounce`, this function doesn't need to take care of the options -- `opDebounce`, this function will take care of the `leading` options +- `debounce`: don't worry about the options. +- `opDebounce`: implement the `leading` options. ### Notions -- [lodash.com/docs/4.17.15#debounce](https://lodash.com/docs/4.17.15#debounce) -- [https://css-tricks.com/debouncing-throttling-explained-examples/#debounce](https://css-tricks.com/debouncing-throttling-explained-examples/#debounce) +- [lodash debounce](https://lodash.com/docs/4.17.15#debounce) +- [css-tricks.com debounce](https://css-tricks.com/debouncing-throttling-explained-examples/#debounce)