diff --git a/1-js/11-async/07-microtask-queue/article.md b/1-js/11-async/07-microtask-queue/article.md index b39ebbb0..4e01493f 100644 --- a/1-js/11-async/07-microtask-queue/article.md +++ b/1-js/11-async/07-microtask-queue/article.md @@ -54,7 +54,7 @@ Now the order is as intended. ## Unhandled rejection -Remember the `unhandledrejection` event from the chapter ? +Remember the `unhandledrejection` event from the article ? Now we can see exactly how JavaScript finds out that there was an unhandled rejection. @@ -109,4 +109,4 @@ So `.then/catch/finally` handlers are always called after the current code is fi If we need to guarantee that a piece of code is executed after `.then/catch/finally`, we can add it into a chained `.then` call. -In most Javascript engines, including browsers and Node.js, the concept of microtasks is closely tied with the "event loop" and "macrotasks". As these have no direct relation to promises, they are covered in another part of the tutorial, in the chapter . +In most Javascript engines, including browsers and Node.js, the concept of microtasks is closely tied with the "event loop" and "macrotasks". As these have no direct relation to promises, they are covered in another part of the tutorial, in the article .