Fix a comment

This commit is contained in:
Nathan Stocks
2021-06-15 19:17:32 -06:00
parent 1dc204a12e
commit a539351bed

View File

@@ -26,7 +26,7 @@ fn main() {
// let mut numbers = vec![1, 2, 3, 4]; // let mut numbers = vec![1, 2, 3, 4];
// for x in ... { // 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] // println!("{:?}", numbers); // should print [3, 6, 9, 12]