-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
4.15 Patterns #224
4.15 Patterns #224
Conversation
メモ:1.9 英語版の patterns.md |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
翻訳の質がそんなに良くなかったのとコメントアウトの方法が段落毎でなくてパッチを適用しづらかったので全体的に手を入れました。
diffが多くて見辛いと思いますが宜しくお願いします。
@KeenS ありがとうございます! 全体的に良くなったと思います。念のため、diff ではなくて、英語版の 1.9 patterns.md と見比べて違いがないことを確認し、訳も全部、読みました。細かな内容で何点かコメントしましたので、ご確認をお願いします。
1.6/ja/book/patterns.md
Outdated
@@ -1,22 +1,20 @@ | |||
% パターン |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1.6 のファイルが変更されてますね。このままレビューしますが、私からのコメントに対応した後、1.9 のファイルとの入れ替えをお願いします。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ぎゃー。ごめんなさい。そのように対応します。
1.6/ja/book/patterns.md
Outdated
|
||
let tuple = (5, String::from("five")); | ||
|
||
// Here, tuple is _not_ moved, as the String was never moved, and u32 is Copy: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
この行の行頭に #
を入れてください。
1.6/ja/book/patterns.md
Outdated
// この行は「error: use of partially moved value: `tuple`」を出します。 | ||
// println!("Tuple is: {:?}", tuple); | ||
|
||
// However, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
この行(However
)の訳もお願いします。
1.6/ja/book/patterns.md
Outdated
@@ -341,7 +388,7 @@ match x { | |||
<!-- # Guards --> | |||
# ガード | |||
|
|||
<!--You can introduce ‘match guards’ with `if`: --> | |||
<!-- You can introduce ‘match guards’ with `if`: --> | |||
`if` を使うことでマッチガードを導入することができます: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1.9 の変更点とは関係ないのですが、ついでに、マッチガード
を 「マッチガード」
に変えてもらえると嬉しいです。
指摘点反映しました。1.6のコミットログを汚さないようにrebaseしました。 |
修正点の反映、ありがとうございました。レビューOKですので、マージします。 |
@tatsuya6502
翻訳の質がそんなに良くなかったのとコメントアウトの方法が段落毎でなくてパッチを適用しづらかったので全体的に手を入れました。
diffが多くて見辛いと思いますが宜しくお願いします。