We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8f6b427 + 1bcb267 commit 438f3caCopy full SHA for 438f3ca
src/liballoc/arc.rs
@@ -60,7 +60,7 @@ const MAX_REFCOUNT: usize = (isize::MAX) as usize;
60
/// ## Thread Safety
61
///
62
/// Unlike [`Rc<T>`], `Arc<T>` uses atomic operations for its reference
63
-/// counting This means that it is thread-safe. The disadvantage is that
+/// counting. This means that it is thread-safe. The disadvantage is that
64
/// atomic operations are more expensive than ordinary memory accesses. If you
65
/// are not sharing reference-counted values between threads, consider using
66
/// [`Rc<T>`] for lower overhead. [`Rc<T>`] is a safe default, because the
0 commit comments