Skip to content

Commit 95fd667

Browse files
committed
additional fix of term
1 parent 7c1e317 commit 95fd667

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1.9/ja/book/concurrency.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ fn main() {
324324
これは内部の参照カウントがスレッドセーフに管理されていないのでデータ競合を起こし得るからです。
325325

326326
<!-- To solve this, we'll use `Arc<T>`, Rust's standard atomic reference count type. -->
327-
この問題を解決するために、 `Arc<T>` を使います。Rustの標準のアトミックなリファレンスカウント型です
327+
この問題を解決するために、 `Arc<T>` を使います。Rustの標準のアトミックな参照カウント型です
328328

329329
<!-- The Atomic part means `Arc<T>` can safely be accessed from multiple threads. -->
330330
<!-- To do this the compiler guarantees that mutations of the internal count use -->

0 commit comments

Comments
 (0)