Skip to content

Commit 6b94f8d

Browse files
committed
Update translation of Generics to 1.9 release.
1 parent 60cf7bf commit 6b94f8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1.9/ja/book/generics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ let x: Option<f64> = Some(5);
5757
<!-- That doesn’t mean we can’t make `Option<T>`s that hold an `f64`! They have -->
5858
<!-- to match up: -->
5959
これは `f64` を保持する `Option<T>` が作れないという意味ではありませんからね!
60-
リテラルと宣言の型をぴったり合わせなければなりません
60+
リテラルと宣言の型を合わせなければなりません
6161

6262
```rust
6363
let x: Option<i32> = Some(5);

0 commit comments

Comments
 (0)