]> git.lizzy.rs Git - rust.git/commitdiff
Added missing `.` in docs.
authorRalf Biedert <rb@xr.io>
Wed, 25 Apr 2018 12:14:43 +0000 (14:14 +0200)
committerGitHub <noreply@github.com>
Wed, 25 Apr 2018 12:14:43 +0000 (14:14 +0200)
src/liballoc/arc.rs

index f5980f4599e45ea8906263819e177dfe233eae41..e52a0216dd329fecc07496b0210740027d8db93f 100644 (file)
@@ -60,7 +60,7 @@
 /// ## 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