From 6bf2aec61cd20876622e40f539c53cf32b164f83 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Fri, 8 Feb 2019 13:20:48 +0000 Subject: [PATCH] Fix typo BTW., this is an _awesome_ tutorial! --- 6-async/04-promise-api/01-promise-errors-as-results/task.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.