rust-lang-ja / book-ja

Rust文書の和訳レポジトリ
https://doc.rust-jp.rs/book-ja/
Other
290 stars 101 forks source link

ch04-02「関数の引数に参照を取ることを借用と呼びます」について #241

Open aoyama-val opened 10 months ago

aoyama-val commented 10 months ago

関数の引数に参照を取ることを借用と呼びます。 https://doc.rust-jp.rs/book-ja/ch04-02-references-and-borrowing.html

原文は

We call the action of creating a reference borrowing. https://doc.rust-lang.org/book/ch04-02-references-and-borrowing.html (参照を作ることを借用と呼びます)

となっています。 実際、関数の引数だけでなく

let r = &a;

のようなのも借用と呼ぶので修正が必要と思います。