mirror of
https://github.com/rust-lang/book.git
synced 2026-09-15 10:10:42 -04:00
Merge pull request #598 from kybishop/patch-1
Remove extra space in while example
This commit is contained in:
@@ -321,7 +321,7 @@ prints another message and exits:
|
||||
fn main() {
|
||||
let mut number = 3;
|
||||
|
||||
while number != 0 {
|
||||
while number != 0 {
|
||||
println!("{}!", number);
|
||||
|
||||
number = number - 1;
|
||||
|
||||
Reference in New Issue
Block a user