diff --git a/readme.md b/readme.md index b99a123..0430a56 100644 --- a/readme.md +++ b/readme.md @@ -92,7 +92,7 @@ _This is a utility function, most people don't need to use it._ The same way `re #### `queueTask(callback)` -_This is a utility function, most people don't need to use it._ The same way `queueMicrotask()` queues a `callback` to be executed in the microtask queue `queueTask()` queues the task for the next task. You learn more at [here](https://developer.mozilla.org/en-US/docs/Web/API/HTML_DOM_API/Microtask_guide#tasks_vs._microtasks). +_This is a utility function, most people don't need to use it._ The same way `queueMicrotask()` queues a `callback` to be executed in the end of the current microtask, `queueTask()` queues the task for the next task. You learn more at [here](https://developer.mozilla.org/en-US/docs/Web/API/HTML_DOM_API/Microtask_guide#tasks_vs._microtasks). ### More complex scenarios