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:
parent
7c9195ba7a
commit
d71ea715bb
@ -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"
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user