Skip to content

Commit

Permalink
Clarify speaker note in control-flow-basics (#2102)
Browse files Browse the repository at this point in the history
Fixes #2096.
  • Loading branch information
djmitche authored May 29, 2024
1 parent 6630187 commit 13d6900
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/control-flow-basics/loops/for.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ fn main() {
- Under the hood `for` loops use a concept called "iterators" to handle
iterating over different kinds of ranges/collections. Iterators will be
discussed in more detail later.
- Note that the `for` loop only iterates to `4`. Show the `1..=5` syntax for an
inclusive range.
- Note that the first `for` loop only iterates to `4`. Show the `1..=5` syntax
for an inclusive range.

</details>

0 comments on commit 13d6900

Please sign in to comment.