Skip to content

Commit 438f3ca

Browse files
Rollup merge of rust-lang#50219 - ralfbiedert:master, r=frewsxcv
Added missing `.` in docs.
2 parents 8f6b427 + 1bcb267 commit 438f3ca

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)