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 b1bd3a3 commit b4e1ce5Copy full SHA for b4e1ce5
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