Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
book: be consistent with preceding example
  • Loading branch information
tshepang committed Oct 14, 2015
1 parent ec4362d commit 18fa6d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/trpl/if-let.md
Expand Up @@ -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,
}
}
```
Expand Down

0 comments on commit 18fa6d8

Please sign in to comment.