From 141188100db82199f72a6721c027bd0777fb0855 Mon Sep 17 00:00:00 2001 From: Liu Fei Date: Tue, 9 Apr 2019 10:26:53 +0800 Subject: [PATCH] Fix typo of 'Fetch: Abort' --- 5-network/03-fetch-abort/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/5-network/03-fetch-abort/article.md b/5-network/03-fetch-abort/article.md index 4585d5cf..22ef0b73 100644 --- a/5-network/03-fetch-abort/article.md +++ b/5-network/03-fetch-abort/article.md @@ -87,7 +87,7 @@ let results = await Promise.all(fetchJobs); // controller.abort() stops all fetches ``` -If wee have our own jobs, different from `fetch`, we can use a single `AbortController` to stop those, together with fetches. +If we have our own jobs, different from `fetch`, we can use a single `AbortController` to stop those, together with fetches. ```js