Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e89d3f8

Browse files
committedFeb 2, 2016
Fix translation.
1 parent 8de1e38 commit e89d3f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎1.6/ja/book/deref-coercions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ foo(&owned);
5858
<!-- `String`, `&owned` is an `&String`, and since `impl Deref<Target=str> for -->
5959
<!-- String`, `&String` will deref to `&str`, which `foo()` takes. -->
6060
値の前にアンパサンド(&)をつけることによってその値への参照を取得することができます。
61-
故に `owned``String` `&owned``&String` になります。
61+
なので、 `owned``String` であり`&owned``&String` であり、
6262
そして、 `String``Deref<Target=str>` を実装しているために、
6363
`&String``foo()` が要求している `&str` に型強制されます。
6464

0 commit comments

Comments
 (0)
Please sign in to comment.