From a539351bede95f5321c7f9a027693345a1d0937d Mon Sep 17 00:00:00 2001 From: Nathan Stocks Date: Tue, 15 Jun 2021 19:17:32 -0600 Subject: [PATCH] Fix a comment --- exercise/closures_iterators/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercise/closures_iterators/src/main.rs b/exercise/closures_iterators/src/main.rs index 965234b..eef9bcf 100644 --- a/exercise/closures_iterators/src/main.rs +++ b/exercise/closures_iterators/src/main.rs @@ -26,7 +26,7 @@ fn main() { // let mut numbers = vec![1, 2, 3, 4]; // for x in ... { - // ... // square the value via the mutable reference x + // ... // multiply the value by 3 via the mutable reference x // } // println!("{:?}", numbers); // should print [3, 6, 9, 12]