Skip to content

Commit c3aa9c9

Browse files
committed
Reflect comments
1 parent 1aeb62a commit c3aa9c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

1.6/ja/book/casting-between-types.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,13 @@ expression, `e as U2` is not necessarily so (in fact it will only be valid if
7878
## 明示的型強制
7979

8080
<!-- A cast `e as U` is valid if `e` has type `T` and `T` *coerces* to `U`. -->
81-
`e as U` というキャストは、 `e` が型 `T` を持ち、かつ `T``U` に型強制されるとき、有効です。
81+
`e as U` というキャストは、 `e` が型 `T` を持ち、かつ `T``U` *型強制* されるとき、有効です。
8282

8383
<!-- ## Numeric casts -->
8484
## 数値キャスト
8585

8686
<!-- A cast `e as U` is also valid in any of the following cases: -->
87-
`e as U` というキャストは、以下のような場合も有効です
87+
`e as U` というキャストは、以下のどの場合でも有効です
8888

8989
<!-- * `e` has type `T` and `T` and `U` are any numeric types; *numeric-cast* -->
9090
<!-- * `e` is a C-like enum (with no data attached to the variants),

0 commit comments

Comments
 (0)