Skip to content

Commit 7a8ca92

Browse files
authored
Merge pull request #156 from kdnakt/translate-destructure-tuple
Translate untranslated line in destructure_tuple.md
2 parents cecbf39 + 502f27c commit 7a8ca92

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/flow_control/match/destructuring/destructure_tuple.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ fn main() {
2525
(.., 2) => println!("last is `2` and the rest doesn't matter"),
2626
(3, .., 4) => println!("First is `3`, last is `4`, and the rest doesn't matter"),
2727
// `..` can be used to ignore the rest of the tuple
28+
// `..`を使うと、タプルの残りの部分を無視できます。
2829
_ => println!("It doesn't matter what they are"),
2930
// `_` means don't bind the value to a variable
3031
// ここでは`_`は、値を変数に束縛しないことを意味します。

0 commit comments

Comments
 (0)