File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ Rustはそれらの目標をたくさんの「ゼロコスト抽象化」を通
67
67
<!-- [Variable bindings][bindings] have a property in Rust: they ‘have ownership’ -->
68
68
<!-- of what they’re bound to. This means that when a binding goes out of scope, -->
69
69
<!-- Rust will free the bound resources. For example: -->
70
- Rustでは [ 変数束縛] [ bindings ] は所有物を持ちます。つまり、それらはそれらが束縛されているものの 「所有権を持つ」ということです。
70
+ Rustでは [ 変数束縛] [ bindings ] はある特性を持ちます。それは、束縛されているものの 「所有権を持つ」ということです。
71
71
これは束縛がスコープから外れるとき、Rustは束縛されているリソースを解放するだろうということを意味します。
72
72
例えばこうです。
73
73
Original file line number Diff line number Diff line change @@ -410,7 +410,7 @@ Rustはこれが真であることを保証するために、参照のスコー
410
410
411
411
<!-- If Rust didn’t check this property, we could accidentally use a reference -->
412
412
<!-- which was invalid. For example: -->
413
- もしRustがこの所有物をチェックしなければ 、無効な参照をうっかり使ってしまうかもしれません。
413
+ もしRustがこの性質をチェックしなければ 、無効な参照をうっかり使ってしまうかもしれません。
414
414
例えばこうです。
415
415
416
416
``` rust,ignore
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ Rustはそれらの目標をたくさんの「ゼロコスト抽象化」を通
67
67
<!-- [Variable bindings][bindings] have a property in Rust: they ‘have ownership’ -->
68
68
<!-- of what they’re bound to. This means that when a binding goes out of scope, -->
69
69
<!-- Rust will free the bound resources. For example: -->
70
- Rustでは [ 変数束縛] [ bindings ] は所有物を持ちます。つまり、それらはそれらが束縛されているものの 「所有権を持つ」ということです。
70
+ Rustでは [ 変数束縛] [ bindings ] はある特性を持ちます。それは、束縛されているものの 「所有権を持つ」ということです。
71
71
これは束縛がスコープから外れるとき、Rustは束縛されているリソースを解放するだろうということを意味します。
72
72
例えばこうです。
73
73
Original file line number Diff line number Diff line change @@ -410,7 +410,7 @@ Rustはこれが真であることを保証するために、参照のスコー
410
410
411
411
<!-- If Rust didn’t check this property, we could accidentally use a reference -->
412
412
<!-- which was invalid. For example: -->
413
- もしRustがこの所有物をチェックしなければ 、無効な参照をうっかり使ってしまうかもしれません。
413
+ もしRustがこの性質をチェックしなければ 、無効な参照をうっかり使ってしまうかもしれません。
414
414
例えばこうです。
415
415
416
416
``` rust,ignore
You can’t perform that action at this time.
0 commit comments