Skip to content

Commit 277fbcf

Browse files
fix #66 - grammar
1 parent 79123fb commit 277fbcf

File tree

1 file changed

+1
-1
lines changed
  • docs/4-language-usage/5-exception-handling

1 file changed

+1
-1
lines changed

docs/4-language-usage/5-exception-handling/g-5030.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This is error-prone because your local declaration overrides the global declarat
99

1010
## Example (bad)
1111

12-
Using the code below, we are not able to handle the no_data_found exception raised by the `SELECT` statement as we have overwritten that exception handler. In addition, our exception handler has not the exception number assigned, which is raise when the SELECT statement does not find any rows.
12+
Using the code below, we are not able to handle the no_data_found exception raised by the `SELECT` statement as we have overwritten that exception handler. In addition, our exception handler doesn't have an exception number assigned, which should be raised when the SELECT statement does not find any rows.
1313

1414
```
1515
DECLARE

0 commit comments

Comments
 (0)