[ABNF] Update some documentation.

This does not change the grammar. It merely updates some text in the comments,
which shows a rule that was changed at some point but its copy in the comments
was not properly updated.

Thanks to @bendyarm for noticing this.
This commit is contained in:
Alessandro Coglio 2022-03-08 23:23:38 -08:00
parent 646c5eb697
commit f735ca8864
2 changed files with 2 additions and 2 deletions

View File

@ -328,7 +328,7 @@ and therefore we have rules like
```
unary-expression = primary-expression
unary-expression = postfix-expression
/ "!" unary-expression
/ "-" unary-expression
```

View File

@ -263,7 +263,7 @@
; the relative precedence and the associativity of expression operators,
; and therefore we have rules like
;
; unary-expression = primary-expression
; unary-expression = postfix-expression
; / "!" unary-expression
; / "-" unary-expression
;