We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c1e317 commit 95fd667Copy full SHA for 95fd667
1.9/ja/book/concurrency.md
@@ -324,7 +324,7 @@ fn main() {
324
これは内部の参照カウントがスレッドセーフに管理されていないのでデータ競合を起こし得るからです。
325
326
<!-- To solve this, we'll use `Arc<T>`, Rust's standard atomic reference count type. -->
327
-この問題を解決するために、 `Arc<T>` を使います。Rustの標準のアトミックなリファレンスカウント型です。
+この問題を解決するために、 `Arc<T>` を使います。Rustの標準のアトミックな参照カウント型です。
328
329
<!-- The Atomic part means `Arc<T>` can safely be accessed from multiple threads. -->
330
<!-- To do this the compiler guarantees that mutations of the internal count use -->
0 commit comments