diff --git a/lib/utils/async.html b/lib/utils/async.html index 6bcfbd4b61..c7e1f6bfa8 100644 --- a/lib/utils/async.html +++ b/lib/utils/async.html @@ -104,7 +104,7 @@ /** * Enqueues a function called at `requestAnimationFrame` timing. * - * @memberof Polymer.Async.timeOut + * @memberof Polymer.Async.animationFrame * @param {Function} fn Callback to run * @return {*} Handle used for canceling task */ @@ -130,7 +130,7 @@ /** * Enqueues a function called at `requestIdleCallback` timing. * - * @memberof Polymer.Async.timeOut + * @memberof Polymer.Async.idlePeriod * @param {Function} fn Callback to run * @return {*} Handle used for canceling task */ @@ -142,7 +142,7 @@ /** * Cancels a previously enqueued `idlePeriod` callback. * - * @memberof Polymer.Async.timeOut + * @memberof Polymer.Async.idlePeriod * @param {*} handle Handle returned from `run` of callback to cancel */ cancel(timer) { @@ -171,7 +171,7 @@ /** * Enqueues a function called at microtask timing. * - * @memberof Polymer.Async.timeOut + * @memberof Polymer.Async.microTask * @param {Function} fn Callback to run */ run(callback) { @@ -183,6 +183,7 @@ /** * Cancels a previously enqueued `microTask` callback. * + * @memberof Polymer.Async.microTask * @param {*} handle Handle returned from `run` of callback to cancel */ cancel(handle) {