Skip to content

Commit 0772c33

Browse files
author
lycoris0731
committed
Fix a typo in guessing-game.md(1.6)
1 parent 1e87879 commit 0772c33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1.6/ja/book/guessing-game.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ fn main() {
648648
<!-- does the equivalent of a `use rand;` as well, so we can make use of anything -->
649649
<!-- in the `rand` crate by prefixing it with `rand::`. -->
650650
まず最初に変更したのは最初の行です。 `extern crate rand` となっています。
651-
`rand``[dependencies]` に宣言したので、 `extern crate` でそれを使うことをRustに伝えれます
651+
`rand``[dependencies]` に宣言したので、 `extern crate` でそれを使うことをRustに伝えています
652652
これはまた、 `use rand;` とするのと同じこともしますので、 `rand` にあるものは `rand::` と前置すれば使えるようになります。
653653

654654
<!-- Next, we added another `use` line: `use rand::Rng`. We’re going to use a -->

0 commit comments

Comments
 (0)