1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2024-12-26 11:17:49 +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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -47,6 +47,7 @@ line-numbers = true
# is relative to the old path.
"async/concurrency/channels.html" = "../channels.html"
"async/pitfall/async-traits.html" = "../pitfalls/async-traits.html"
"control-flow/while-let-expression.html" = "while-let-expressions.html"
"exercises/day-4/afternoon.html" = "../android/morning.html"
"exercises/day-4/android.html" = "../android/morning.html"
"exercises/day-4/dining-philosophers.html" = "../concurrency/dining-philosophers.html"

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