From 92f2c7b557b02892605f1e3c252a957a04a2d817 Mon Sep 17 00:00:00 2001 From: 1van0v Date: Wed, 17 Apr 2019 16:48:11 +0300 Subject: [PATCH] Update article.md From my point of you "has" should be added or "go" should be used in the past tense (went). --- 1-js/11-async/04-promise-error-handling/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/11-async/04-promise-error-handling/article.md b/1-js/11-async/04-promise-error-handling/article.md index 8ca68ff5..b2a16b0e 100644 --- a/1-js/11-async/04-promise-error-handling/article.md +++ b/1-js/11-async/04-promise-error-handling/article.md @@ -266,7 +266,7 @@ new Promise(function() { In case of an error, the promise state becomes "rejected", and the execution should jump to the closest rejection handler. But there is no such handler in the examples above. So the error gets "stuck". -In practice, just like with a regular unhandled errors, it means that something terribly gone wrong, the script probably died. +In practice, just like with a regular unhandled errors, it means that something has terribly gone wrong, the script probably died. Most JavaScript engines track such situations and generate a global error in that case. We can see it in the console.