Merge pull request #3172 from Polymer/debounce-doc-typo

Minor typo in docs: call the debounce callback
This commit is contained in:
Steve Orvell 2015-12-07 15:33:51 -08:00
commit 6567c9a039

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