Skip to content

Commit

Permalink
Added missing . in docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
ralfbiedert authored Apr 25, 2018
1 parent 5ec6637 commit 1bcb267
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 1bcb267

Please sign in to comment.