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