We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c62f4ea commit 1b9eecaCopy full SHA for 1b9eeca
doc/src/manual/control-flow.md
@@ -397,7 +397,7 @@ julia> while i <= 3
397
3
398
```
399
400
-The `while` loop evaluates the condition expression (`i <= 5` in this case), and as long it remains
+The `while` loop evaluates the condition expression (`i <= 3` in this case), and as long it remains
401
`true`, keeps also evaluating the body of the `while` loop. If the condition expression is `false`
402
when the `while` loop is first reached, the body is never evaluated.
403
0 commit comments