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 1e87879 + 0772c33 commit a95fb40Copy full SHA for a95fb40
1.6/ja/book/guessing-game.md
@@ -648,7 +648,7 @@ fn main() {
648
<!-- does the equivalent of a `use rand;` as well, so we can make use of anything -->
649
<!-- in the `rand` crate by prefixing it with `rand::`. -->
650
まず最初に変更したのは最初の行です。 `extern crate rand` となっています。
651
-`rand` を `[dependencies]` に宣言したので、 `extern crate` でそれを使うことをRustに伝えれます。
+`rand` を `[dependencies]` に宣言したので、 `extern crate` でそれを使うことをRustに伝えています。
652
これはまた、 `use rand;` とするのと同じこともしますので、 `rand` にあるものは `rand::` と前置すれば使えるようになります。
653
654
<!-- Next, we added another `use` line: `use rand::Rng`. We’re going to use a -->
0 commit comments