From 6df0982d84e649c707a0c3059f677e493db8f329 Mon Sep 17 00:00:00 2001 From: LeviDing Date: Fri, 13 Nov 2020 20:22:16 +0800 Subject: [PATCH] FIX: minor typo error --- 5-network/04-fetch-abort/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/5-network/04-fetch-abort/article.md b/5-network/04-fetch-abort/article.md index 9efadd0e..642190b2 100644 --- a/5-network/04-fetch-abort/article.md +++ b/5-network/04-fetch-abort/article.md @@ -26,7 +26,7 @@ When `abort()` is called: Generally, we have two parties in the process: 1. The one that performs an cancelable operation, it sets a listener on `controller.signal`. -2. The one one that cancels: it calls `controller.abort()` when needed. +2. The one that cancels: it calls `controller.abort()` when needed. Here's the full example (without `fetch` yet):