Skip to content

Commit a193448

Browse files
authored
Update article.md
"can use" -> "we can use".
1 parent b28e9d9 commit a193448

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/10-error-handling/1-try-catch/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ It works like this:
2626

2727
1. First, the code in `try {...}` is executed.
2828
2. If there were no errors, then `catch(err)` is ignored: the execution reaches the end of `try` and goes on, skipping `catch`.
29-
3. If an error occurs, then the `try` execution is stopped, and control flows to the beginning of `catch(err)`. The `err` variable (can use any name for it) will contain an error object with details about what happened.
29+
3. If an error occurs, then the `try` execution is stopped, and control flows to the beginning of `catch(err)`. The `err` variable (we can use any name for it) will contain an error object with details about what happened.
3030

3131
![](try-catch-flow.svg)
3232

0 commit comments

Comments
 (0)