From 3992daabdcd0aee77aff55f7fc4834e99abddd85 Mon Sep 17 00:00:00 2001 From: Samuel Torres <33882985+torressam333@users.noreply.github.com> Date: Wed, 26 Jun 2024 10:57:59 -0700 Subject: [PATCH] Update queueMicrotask.md Fix minor typo in readme. --- explainers/queueMicrotask.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/explainers/queueMicrotask.md b/explainers/queueMicrotask.md index a623d48..da833c9 100644 --- a/explainers/queueMicrotask.md +++ b/explainers/queueMicrotask.md @@ -25,7 +25,7 @@ Reasons to expose this API directly rather than making people emulate it with via higher level APIs * Emulating this via Promise causes exceptions thrown in the callback to be converted into rejected promises. -* Emulating via Promise causes unnecessary objects to be created and detroyed. +* Emulating via Promise causes unnecessary objects to be created and destroyed. Other methods of emulating this also cause wasted effort. * The other semantically distinct async callback queue APIs are available directly, microtask not being available directly is an anomaly