Skip to content

Commit f3d5a55

Browse files
authored
Merge pull request #2422 from nathan/patch-1
Fix runaway <code> in RFC 92: struct grammar
2 parents f8eeef5 + d412040 commit f3d5a55

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

text/0092-struct-grammar.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ e' ::= x
6565
block ::= `{` (e;)* e? `}`
6666
```
6767

68-
`e' is just e without struct literal expressions. We use e' instead of e
69-
`wherever e is followed directly by block or any other non-terminal which may
70-
`have block as its first terminal (after any possible expansions).
68+
`e'` is just e without struct literal expressions. We use `e'` instead of `e`
69+
wherever `e` is followed directly by block or any other non-terminal which may
70+
have block as its first terminal (after any possible expansions).
7171

7272
For any expressions where a sub-expression is the final lexical element
7373
(closures in the subset above, but also unary and binary operations), we require

0 commit comments

Comments
 (0)