Skip to content

Commit 92f2c7b

Browse files
authored
Update article.md
From my point of you "has" should be added or "go" should be used in the past tense (went).
1 parent 30f1dc4 commit 92f2c7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/11-async/04-promise-error-handling/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ new Promise(function() {
266266

267267
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".
268268

269-
In practice, just like with a regular unhandled errors, it means that something terribly gone wrong, the script probably died.
269+
In practice, just like with a regular unhandled errors, it means that something has terribly gone wrong, the script probably died.
270270

271271
Most JavaScript engines track such situations and generate a global error in that case. We can see it in the console.
272272

0 commit comments

Comments
 (0)