From 3e80dffd481ef8f427b8dccd9e536e9abfb20682 Mon Sep 17 00:00:00 2001 From: Mark Pollmann Date: Sat, 25 Feb 2017 22:50:20 +0100 Subject: [PATCH] Fixed small typo in debounce docs (#3029) Just a small thing I noticed, I think it reads better this way. --- debounce.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debounce.js b/debounce.js index 6d543b1c5..66948dd3b 100644 --- a/debounce.js +++ b/debounce.js @@ -21,7 +21,7 @@ const nativeMin = Math.min * is invoked more than once during the `wait` timeout. * * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred - * until to the next tick, similar to `setTimeout` with a timeout of `0`. + * until the next tick, similar to `setTimeout` with a timeout of `0`. * * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/) * for details over the differences between `debounce` and `throttle`.