@@ -215,11 +215,11 @@ Rustはこれが安全でないだろうと知っているのです!
215215<!-- wraps a value up with some extra runtime bookkeeping which allows us to -->
216216<!-- share the ownership of the value between multiple references at the same time. -->
217217Rustの標準アトミック参照カウント型である ` Arc<T> ` を使いましょう。
218- これは、複数の参照の間で値を同時に共有できるようにするために、特別な実行時帳簿(runtime bookkeeping)で値をくるむものです 。
218+ これは複数の参照間で値の所有権を同時に共有できるように、値を特別な実行時の管理用データでくるむものです 。
219219
220220<!-- The bookkeeping consists of a count of how many of these references exist to -->
221221<!-- the value, hence the reference count part of the name. -->
222- この帳簿には 、値への参照がいくつ存在しているかというカウントが記録されています。
222+ その管理用データには 、値への参照がいくつ存在しているかというカウントが記録されています。
223223すなわち名前の「参照カウント」の部分にあたります。
224224
225225<!-- The Atomic part means `Arc<T>` can safely be accessed from multiple threads. -->
@@ -407,7 +407,7 @@ fn main() {
407407
408408<!-- While this channel is just sending a generic signal, we can send any data that -->
409409<!-- is `Send` over the channel! -->
410- このチャネルがジェネリックなシグナルを送っている間にも、 ` Send ` であるデータならばそのチャネルを通じて送ることができます !
410+ このチャネルはただシグナルを送っているだけですが、 ` Send ` であるデータならばなんでもこのチャネルを通じて送れます !
411411
412412``` rust
413413use std :: thread;
@@ -442,7 +442,7 @@ fn main() {
442442<!-- A `panic!` will crash the currently executing thread. You can use Rust's -->
443443<!-- threads as a simple isolation mechanism: -->
444444` panic! ` は現在実行中のスレッドをクラッシュさせます。
445- Rustのスレッドは一つの独立したメカニズムとして使うことができます 。
445+ Rustのスレッドは独立させるための単純なメカニズムとして使うことができます 。
446446
447447``` rust
448448use std :: thread;
0 commit comments