From fa6055c297254ce1fde0075ac2250d4d24047644 Mon Sep 17 00:00:00 2001 From: Frances Wingerter <91758128+fw-immunant@users.noreply.github.com> Date: Tue, 13 Aug 2024 14:27:08 +0000 Subject: [PATCH] break/continue: don't say "for `loop`" (#2277) See #2042. --- src/control-flow-basics/break-continue.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/control-flow-basics/break-continue.md b/src/control-flow-basics/break-continue.md index b844b69a..e0ae4b88 100644 --- a/src/control-flow-basics/break-continue.md +++ b/src/control-flow-basics/break-continue.md @@ -9,7 +9,7 @@ If you want to immediately start the next iteration use If you want to exit any kind of loop early, use [`break`](https://doc.rust-lang.org/reference/expressions/loop-expr.html#break-expressions). -For `loop`, this can take an optional expression that becomes the value of the +With `loop`, this can take an optional expression that becomes the value of the `loop` expression. ```rust,editable