From d71e5c3f56cf70337f575d6eb368d80cbd3cd76c Mon Sep 17 00:00:00 2001 From: Antonio Stoilkov Date: Mon, 22 Jan 2024 12:42:36 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20more=20accurate=20wording?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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