Skip to content

Commit

Permalink
Fix tt-bundling example breaking due to 2021 edition changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Veykril committed Oct 16, 2022
1 parent ae96cb6 commit ff7d20f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/decl-macros/patterns/tt-bundling.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ fn main() {
call_a_or_b_on_tail!(
(a: compute_len, b: show_tail),
the recursive part that skips over all these
tokens doesn't much care whether we will call a
tokens does not much care whether we will call a
or call b: only the terminal rules care.
),
None
Expand All @@ -39,10 +39,10 @@ fn main() {
(a: compute_len, b: show_tail),
and now, to justify the existence of two paths
we will also call a: its input should somehow
be self-referential, so let's make it return
some eighty-six!
be self-referential, so let us make it return
some ninety-one!
),
Some(92)
Some(91)
);
}
```
Expand Down

0 comments on commit ff7d20f

Please sign in to comment.