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);
* }
*