1
Fork 0

Rollup merge of #29060 - tshepang:consistency, r=nikomatsakis

This commit is contained in:
Manish Goregaokar 2015-10-15 13:41:33 +05:30
commit 596338b8ef

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,
}
}
```