diff --git a/6-async/04-promise-api/01-promise-errors-as-results/task.md b/6-async/04-promise-api/01-promise-errors-as-results/task.md index d6904f1b..e4e77aeb 100644 --- a/6-async/04-promise-api/01-promise-errors-as-results/task.md +++ b/6-async/04-promise-api/01-promise-errors-as-results/task.md @@ -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.