diff --git a/6-async/04-promise-api/01-promise-errors-as-results/solution.md b/6-async/04-promise-api/01-promise-errors-as-results/solution.md index a8646364..17ac6ba5 100644 --- a/6-async/04-promise-api/01-promise-errors-as-results/solution.md +++ b/6-async/04-promise-api/01-promise-errors-as-results/solution.md @@ -12,7 +12,7 @@ Promise.all( Here we have an array of `fetch(...)` promises that goes to `Promise.all`. -We can't change the way `Promise.all` works: if it detects an error, then it rejects with it. So we need to prevent any error from occuring. Instead, if a `fetch` error happens, we need to treat it as a "normal" result. +We can't change the way `Promise.all` works: if it detects an error, then it rejects with it. So we need to prevent any error from occurring. Instead, if a `fetch` error happens, we need to treat it as a "normal" result. Here's how: