book: be consistent with preceding example

This commit is contained in:
Tshepang Lekhonkhobe 2015-10-15 00:19:47 +02:00
parent ec4362da56
commit 18fa6d8dbc

View file

@ -65,7 +65,7 @@ loop as long as a value matches a certain pattern. It turns code like this:
loop {
match option {
Some(x) => println!("{}", x),
_ => break,
None => break,
}
}
```