From e6304a6f5d3eee618e58ef11279ebb272398fa39 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Tue, 22 Jul 2025 11:56:19 -0700 Subject: [PATCH] Typo correction --- control-flow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/control-flow.md b/control-flow.md index f49812a..37378cb 100644 --- a/control-flow.md +++ b/control-flow.md @@ -84,7 +84,7 @@ fn print_all(all: Vec) { TODO also &all/all instead of all.iter() -If we want to index over the indices of `all` (a bit more like a standard C++ +If we want to iterate over the indices of `all` (a bit more like a standard C++ for loop over an array), you could do ```rust