Skip to content

Commit 965bd68

Browse files
authored
Merge pull request #3064 from smith558/patch-1
Fix typo
2 parents ed4a212 + 727786b commit 965bd68

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
@@ -199,7 +199,7 @@ In non-browser environments like Node.js there are other ways to track unhandled
199199
## Summary
200200

201201
- `.catch` handles errors in promises of all kinds: be it a `reject()` call, or an error thrown in a handler.
202-
- `.then` also catches errors in the same manner, if given thee second argument (which is the error handler).
202+
- `.then` also catches errors in the same manner, if given the second argument (which is the error handler).
203203
- We should place `.catch` exactly in places where we want to handle errors and know how to handle them. The handler should analyze errors (custom error classes help) and rethrow unknown ones (maybe they are programming mistakes).
204204
- It's ok not to use `.catch` at all, if there's no way to recover from an error.
205205
- In any case we should have the `unhandledrejection` event handler (for browsers, and analogs for other environments) to track unhandled errors and inform the user (and probably our server) about them, so that our app never "just dies".

0 commit comments

Comments
 (0)