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.
2 parents 571f371 + b4e1ce5 commit 1f40cdeCopy full SHA for 1f40cde
src/doc/trpl/while-loops.md
@@ -3,7 +3,7 @@
3
Rust also has a `while` loop. It looks like this:
4
5
```{rust}
6
-let mut x = 5; // mut x: u32
+let mut x = 5; // mut x: i32
7
let mut done = false; // mut done: bool
8
9
while !done {
0 commit comments