Skip to content

Commit 13d6900

Browse files
authored
Clarify speaker note in control-flow-basics (#2102)
Fixes #2096.
1 parent 6630187 commit 13d6900

File tree

1 file changed

+2
-2
lines changed
  • src/control-flow-basics/loops

1 file changed

+2
-2
lines changed

src/control-flow-basics/loops/for.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ fn main() {
2020
- Under the hood `for` loops use a concept called "iterators" to handle
2121
iterating over different kinds of ranges/collections. Iterators will be
2222
discussed in more detail later.
23-
- Note that the `for` loop only iterates to `4`. Show the `1..=5` syntax for an
24-
inclusive range.
23+
- Note that the first `for` loop only iterates to `4`. Show the `1..=5` syntax
24+
for an inclusive range.
2525

2626
</details>

0 commit comments

Comments
 (0)