Skip to content

Commit

Permalink
Rollup merge of rust-lang#50219 - ralfbiedert:master, r=frewsxcv
Browse files Browse the repository at this point in the history
Added missing `.` in docs.
  • Loading branch information
GuillaumeGomez authored Apr 26, 2018
2 parents 8f6b427 + 1bcb267 commit 438f3ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/liballoc/arc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const MAX_REFCOUNT: usize = (isize::MAX) as usize;
/// ## Thread Safety
///
/// Unlike [`Rc<T>`], `Arc<T>` uses atomic operations for its reference
/// counting This means that it is thread-safe. The disadvantage is that
/// counting. This means that it is thread-safe. The disadvantage is that
/// atomic operations are more expensive than ordinary memory accesses. If you
/// are not sharing reference-counted values between threads, consider using
/// [`Rc<T>`] for lower overhead. [`Rc<T>`] is a safe default, because the
Expand Down

0 comments on commit 438f3ca

Please sign in to comment.