Skip to content

Commit 81868c7

Browse files
authored
Merge pull request #154 from athos/revise-property-translation
"property"の訳
2 parents e71dda4 + b935f29 commit 81868c7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

1.6/ja/book/ownership.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Rustはそれらの目標をたくさんの「ゼロコスト抽象化」を通
6767
<!-- [Variable bindings][bindings] have a property in Rust: they ‘have ownership’ -->
6868
<!-- of what they’re bound to. This means that when a binding goes out of scope, -->
6969
<!-- Rust will free the bound resources. For example: -->
70-
Rustでは [変数束縛][bindings] は所有物を持ちます。つまり、それらはそれらが束縛されているものの「所有権を持つ」ということです。
70+
Rustでは [変数束縛][bindings] はある特性を持ちます。それは、束縛されているものの「所有権を持つ」ということです。
7171
これは束縛がスコープから外れるとき、Rustは束縛されているリソースを解放するだろうということを意味します。
7272
例えばこうです。
7373

1.6/ja/book/references-and-borrowing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ Rustはこれが真であることを保証するために、参照のスコー
410410

411411
<!-- If Rust didn’t check this property, we could accidentally use a reference -->
412412
<!-- which was invalid. For example: -->
413-
もしRustがこの所有物をチェックしなければ、無効な参照をうっかり使ってしまうかもしれません。
413+
もしRustがこの性質をチェックしなければ、無効な参照をうっかり使ってしまうかもしれません。
414414
例えばこうです。
415415

416416
```rust,ignore

1.9/ja/book/ownership.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Rustはそれらの目標をたくさんの「ゼロコスト抽象化」を通
6767
<!-- [Variable bindings][bindings] have a property in Rust: they ‘have ownership’ -->
6868
<!-- of what they’re bound to. This means that when a binding goes out of scope, -->
6969
<!-- Rust will free the bound resources. For example: -->
70-
Rustでは [変数束縛][bindings] は所有物を持ちます。つまり、それらはそれらが束縛されているものの「所有権を持つ」ということです。
70+
Rustでは [変数束縛][bindings] はある特性を持ちます。それは、束縛されているものの「所有権を持つ」ということです。
7171
これは束縛がスコープから外れるとき、Rustは束縛されているリソースを解放するだろうということを意味します。
7272
例えばこうです。
7373

1.9/ja/book/references-and-borrowing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ Rustはこれが真であることを保証するために、参照のスコー
410410

411411
<!-- If Rust didn’t check this property, we could accidentally use a reference -->
412412
<!-- which was invalid. For example: -->
413-
もしRustがこの所有物をチェックしなければ、無効な参照をうっかり使ってしまうかもしれません。
413+
もしRustがこの性質をチェックしなければ、無効な参照をうっかり使ってしまうかもしれません。
414414
例えばこうです。
415415

416416
```rust,ignore

0 commit comments

Comments
 (0)