Minor typo in docs: call the debounce callback

This commit is contained in:
Peter Burns 2015-12-07 15:18:05 -08:00
parent bab847aaf7
commit 02c5c79d2e

View File

@ -27,7 +27,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
* debouncedClickAction: function(e) {
* // will not call `processClick` more than once per 100ms
* this.debounce('click', function() {
* this.processClick;
* this.processClick();
* }, 100);
* }
*