Skip to content

Commit 73934ed

Browse files
authored
draft-v7: Fix ANTLR representation of the try statement (#588)
1 parent 39a8048 commit 73934ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

standard/statements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1253,7 +1253,7 @@ The `try` statement provides a mechanism for catching exceptions that occur duri
12531253
```ANTLR
12541254
try_statement
12551255
: 'try' block catch_clauses
1256-
| 'try' block catch_clauses* finally_clause
1256+
| 'try' block catch_clauses? finally_clause
12571257
;
12581258
12591259
catch_clauses

0 commit comments

Comments
 (0)