Merge pull request #898 from liufei/master

Fix typo of 'Fetch: Abort'
This commit is contained in:
Ilya Kantor 2019-04-09 23:37:21 +03:00 committed by GitHub
commit 8c6eb6e056
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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