From e289aba4ee76de0ae2655f5c947721fa74b46265 Mon Sep 17 00:00:00 2001 From: Mustafa Kemal Tuna <12192118+lumosmind@users.noreply.github.com> Date: Fri, 20 Nov 2020 15:43:20 +0300 Subject: [PATCH] Update 1-js/11-async/05-promise-api/article.md Co-authored-by: Vse Mozhe Buty --- 1-js/11-async/05-promise-api/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/11-async/05-promise-api/article.md b/1-js/11-async/05-promise-api/article.md index fa056628..d6933ec4 100644 --- a/1-js/11-async/05-promise-api/article.md +++ b/1-js/11-async/05-promise-api/article.md @@ -237,7 +237,7 @@ Promise.race([ ]).then(alert); // 1 ``` -The first promise here was fastest, but it rejecets, so the second promise became the result. After the first fulfilled promise "wins the race", all further results are ignored. +The first promise here was fastest, but it was rejected, so the second promise became the result. After the first fulfilled promise "wins the race", all further results are ignored. ## Promise.resolve/reject