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.
1 parent ac3e985 commit 2729175Copy full SHA for 2729175
src/flow_control/match/destructuring/destructure_tuple.md
@@ -13,7 +13,7 @@ fn main() {
13
// Destructure the second and third elements
14
(0, y, z) => println!("First is `0`, `y` is {:?}, and `z` is {:?}", y, z),
15
(1, ..) => println!("First is `1` and the rest doesn't matter"),
16
- // `..` can be the used ignore the rest of the tuple
+ // `..` can be used to ignore the rest of the tuple
17
_ => println!("It doesn't matter what they are"),
18
// `_` means don't bind the value to a variable
19
}
0 commit comments