Skip to content

Commit a95fb40

Browse files
authored
Merge pull request #256 from lycoris0731/fix-typo
Fix a typo in guessing-game.md(1.6)
2 parents 1e87879 + 0772c33 commit a95fb40

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)