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

Improve the translation of ch13-01-closures.md #48

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion second-edition/src/ch13-01-closures.md
Original file line number Diff line number Diff line change
Expand Up @@ -1094,7 +1094,7 @@ error[E0434]: can't capture dynamic environment in a fn item; use the || { ...
<!-- * `FnMut` can change the environment because it mutably borrows values. -->
<!-- * `Fn` borrows values from the environment immutably. -->

* `FnOnce`は内包されたスコープからキャプチャした変数を消費し、これがクロージャの*環境*として知られています
* `FnOnce`は、クロージャの*環境*として知られている内包されたスコープからキャプチャした変数を消費します
キャプチャした変数を消費するために、定義された際にクロージャはこれらの変数の所有権を奪い、
自身にムーブするのです。名前のうち、`Once`の部分は、
このクロージャは同じ変数の所有権を2回以上奪うことができないという事実を表しているので、1回しか呼ぶことができないのです。
Expand Down