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 ac3e985 + 2729175 commit 1db6bb4Copy full SHA for 1db6bb4
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