Skip to content

Commit 6bf2aec

Browse files
authored
Fix typo
BTW., this is an _awesome_ tutorial!
1 parent d11abce commit 6bf2aec

File tree

1 file changed

+1
-1
lines changed
  • 6-async/04-promise-api/01-promise-errors-as-results

1 file changed

+1
-1
lines changed

6-async/04-promise-api/01-promise-errors-as-results/task.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Promise.all(urls.map(url => fetch(url)))
2020
});
2121
```
2222

23-
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.
23+
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.
2424

2525
That's not good.
2626

0 commit comments

Comments
 (0)