Skip to content

Commit

Permalink
fix repetition syntax in 06_repetition readme
Browse files Browse the repository at this point in the history
  • Loading branch information
LavaToaster authored Nov 19, 2023
1 parent bdaf9a9 commit c83b34b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/06_repetition/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ To break that down:
What's now left is to use the matched values. To do this, the rule would be something like:

```rust,ignore
$(the $my_literal:literal)and+ => {
($(the $my_literal:literal)and+) => {
{
let mut my_vec = Vec::new();
$(my_vec.push($my_literal));+;
Expand Down

0 comments on commit c83b34b

Please sign in to comment.