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.
2 parents bcbad7b + 18fa6d8 commit 596338bCopy full SHA for 596338b
src/doc/trpl/if-let.md
@@ -65,7 +65,7 @@ loop as long as a value matches a certain pattern. It turns code like this:
65
loop {
66
match option {
67
Some(x) => println!("{}", x),
68
- _ => break,
+ None => break,
69
}
70
71
```
0 commit comments