From c83b34b069e325a5f264a94b1cddc3d069f6946a Mon Sep 17 00:00:00 2001 From: Adam Lavin Date: Sun, 19 Nov 2023 20:05:22 +0000 Subject: [PATCH] fix repetition syntax in 06_repetition readme --- exercises/06_repetition/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/06_repetition/README.md b/exercises/06_repetition/README.md index 7877ee8..46690af 100644 --- a/exercises/06_repetition/README.md +++ b/exercises/06_repetition/README.md @@ -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));+;