From 806e3710e5aabdac87791b2a2c97b0635f4f9173 Mon Sep 17 00:00:00 2001 From: LeviDing Date: Fri, 13 Nov 2020 20:29:51 +0800 Subject: [PATCH] Update article.md --- 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 642190b2..32f7a173 100644 --- a/5-network/04-fetch-abort/article.md +++ b/5-network/04-fetch-abort/article.md @@ -50,7 +50,7 @@ As we can see, `AbortController` is just a means to pass `abort` events when `ab We could implement same kind of event listening in our code on our own, without `AbortController` object at all. -But what's valuable is that `fetch` knows how to work with `AbortController` object, it's integrated with it. +But what's valuable is that `fetch` knows how to work with `AbortController` object, it's integrated with it. ## Using with fetch