Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"property"の訳 #154

Merged
merged 2 commits into from Jun 14, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion 1.6/ja/book/ownership.md
Expand Up @@ -67,7 +67,7 @@ Rustはそれらの目標をたくさんの「ゼロコスト抽象化」を通
<!-- [Variable bindings][bindings] have a property in Rust: they ‘have ownership’ -->
<!-- of what they’re bound to. This means that when a binding goes out of scope, -->
<!-- Rust will free the bound resources. For example: -->
Rustでは [変数束縛][bindings] は所有物を持ちます。つまり、それらはそれらが束縛されているものの「所有権を持つ」ということです。
Rustでは [変数束縛][bindings] はある特性を持ちます。それは、束縛されているものの「所有権を持つ」ということです。
これは束縛がスコープから外れるとき、Rustは束縛されているリソースを解放するだろうということを意味します。
例えばこうです。

Expand Down
2 changes: 1 addition & 1 deletion 1.6/ja/book/references-and-borrowing.md
Expand Up @@ -410,7 +410,7 @@ Rustはこれが真であることを保証するために、参照のスコー

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

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

Expand Down
2 changes: 1 addition & 1 deletion 1.9/ja/book/references-and-borrowing.md
Expand Up @@ -410,7 +410,7 @@ Rustはこれが真であることを保証するために、参照のスコー

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

```rust,ignore
Expand Down