Fix typo of 'Fetch: Abort'

This commit is contained in:
Liu Fei 2019-04-09 10:26:53 +08:00 committed by GitHub
parent 0789e3833d
commit 141188100d
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 // 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 ```js