1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-06-19 15:35:37 +02:00

Fix broken link in for-expressions.md (#812)

This commit is contained in:
Martin Geisler
2023-06-13 19:43:08 +02:00
committed by GitHub
parent 7c9195ba7a
commit d71ea715bb
2 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,7 @@
# `for` loops
The [`for` loop](https://doc.rust-lang.org/std/keyword.for.html) is closely
related to the [`while let` loop](while-let-expression.md). It will
related to the [`while let` loop](while-let-expressions.md). It will
automatically call `into_iter()` on the expression and then iterate over it:
```rust,editable