From e1db5dcebea063e4afe2252894ded11dff9d595c Mon Sep 17 00:00:00 2001 From: Lavrentiy Rubtsov <73550760+Rnbsov@users.noreply.github.com> Date: Sun, 20 Feb 2022 20:33:10 +0600 Subject: [PATCH] Missed exclamation mark --- 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 507221b8..7be84ce2 100644 --- a/1-js/11-async/05-promise-api/article.md +++ b/1-js/11-async/05-promise-api/article.md @@ -248,7 +248,7 @@ Promise.any([ ]).catch(error => { console.log(error.constructor.name); // AggregateError console.log(error.errors[0]); // Error: Ouch! - console.log(error.errors[1]); // Error: Error + console.log(error.errors[1]); // Error: Error! }); ```