mirror of
https://github.com/fluencelabs/lalrpop
synced 2025-03-16 17:00:53 +00:00
Merge pull request #251 from nick70/master
Add missing back-tick in tutorial.
This commit is contained in:
commit
f7d274a76a
@ -412,7 +412,7 @@ give you the idea:
|
||||
| `<A> <B> => bar(<>)` | `<a:A> <b:B> => bar(a, b)` |
|
||||
| `<p:A> <q:B> => bar(<>)` | `<p:A> <q:B> => bar(p, q)` |
|
||||
| `<p:A> B => Foo {<>}` | `<p:A> B => Foo {p:p}` |
|
||||
| `<p:A> <q:B> => Foo {<>} | `<p:A> <q:B> => Foo {p:p, q:q}` |
|
||||
| `<p:A> <q:B> => Foo {<>}` | `<p:A> <q:B> => Foo {p:p, q:q}` |
|
||||
|
||||
The `<>` expressions also works with struct constructors (like `Foo
|
||||
{...}` in examples above). This works out well if the names of your
|
||||
|
Loading…
x
Reference in New Issue
Block a user