Merge pull request #791 from MikeTaylor/patch-1

Fix typo
This commit is contained in:
Ilya Kantor 2019-02-10 08:50:30 +03:00 committed by GitHub
commit 29d256272d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,7 +20,7 @@ Promise.all(urls.map(url => fetch(url)))
});
```
The problem is that if any of requests fails, then `Promise.all` rejects with the error, and we loose results of all the other requests.
The problem is that if any of requests fails, then `Promise.all` rejects with the error, and we lose results of all the other requests.
That's not good.