Skip to content

Commit 1bcb267

Browse files
authored
Added missing . in docs.
1 parent 5ec6637 commit 1bcb267

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/liballoc/arc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const MAX_REFCOUNT: usize = (isize::MAX) as usize;
6060
/// ## Thread Safety
6161
///
6262
/// Unlike [`Rc<T>`], `Arc<T>` uses atomic operations for its reference
63-
/// counting This means that it is thread-safe. The disadvantage is that
63+
/// counting. This means that it is thread-safe. The disadvantage is that
6464
/// atomic operations are more expensive than ordinary memory accesses. If you
6565
/// are not sharing reference-counted values between threads, consider using
6666
/// [`Rc<T>`] for lower overhead. [`Rc<T>`] is a safe default, because the

0 commit comments

Comments
 (0)