From 02c5c79d2e852a86334d119f23761d25351c3264 Mon Sep 17 00:00:00 2001 From: Peter Burns Date: Mon, 7 Dec 2015 15:18:05 -0800 Subject: [PATCH] Minor typo in docs: call the debounce callback --- src/mini/debouncer.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mini/debouncer.html b/src/mini/debouncer.html index c3fb076725..d8365fabb2 100644 --- a/src/mini/debouncer.html +++ b/src/mini/debouncer.html @@ -27,7 +27,7 @@ * debouncedClickAction: function(e) { * // will not call `processClick` more than once per 100ms * this.debounce('click', function() { - * this.processClick; + * this.processClick(); * }, 100); * } *