Skip to content

Commit 1ad439e

Browse files
authoredJan 31, 2022
docs: add missed verb in docs (#15550)
1 parent 59b5ab2 commit 1ad439e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎docs/rules/no-ex-assign.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Disallows reassigning exceptions in `catch` clauses.
44

5-
If a `catch` clause in a `try` statement accidentally (or purposely) assigns another value to the exception parameter, it impossible to refer to the error from that point on.
5+
If a `catch` clause in a `try` statement accidentally (or purposely) assigns another value to the exception parameter, it is impossible to refer to the error from that point on.
66
Since there is no `arguments` object to offer alternative access to this data, assignment of the parameter is absolutely destructive.
77

88
## Rule Details

0 commit comments

Comments
 (0)
Please sign in to comment.