Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion control-flow.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ fn print_all(all: Vec<i32>) {

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
Expand Down