diff options
| author | Ulysse Carion <ulysse@ulysse.io> | 2017-06-05 12:07:54 -0700 |
|---|---|---|
| committer | Ulysse Carion <ulysse@ulysse.io> | 2017-06-05 12:07:54 -0700 |
| commit | 1af0cb165065ebca5296a7b5841ebec9bfb40476 (patch) | |
| tree | 0e37b3d1579fd4ac678c962dd5deb84ed20e9207 /src/liballoc/arc.rs | |
| parent | 8d9df99fbbefd4e394c932309c1453b5a92d93b3 (diff) | |
| download | rust-1af0cb165065ebca5296a7b5841ebec9bfb40476.tar.gz rust-1af0cb165065ebca5296a7b5841ebec9bfb40476.zip | |
Use single quotes, and doc the Rc struct itself.
Diffstat (limited to 'src/liballoc/arc.rs')
| -rw-r--r-- | src/liballoc/arc.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/liballoc/arc.rs b/src/liballoc/arc.rs index 81e97334e3c..5ed41f6ffe6 100644 --- a/src/liballoc/arc.rs +++ b/src/liballoc/arc.rs @@ -42,8 +42,8 @@ use heap::deallocate; /// necessarily) at _exactly_ `MAX_REFCOUNT + 1` references. const MAX_REFCOUNT: usize = (isize::MAX) as usize; -/// A thread-safe reference-counting pointer. "Arc" stands for "Atomically -/// Reference Counted". +/// A thread-safe reference-counting pointer. 'Arc' stands for 'Atomically +/// Reference Counted'. /// /// The type `Arc<T>` provides shared ownership of a value of type `T`, /// allocated in the heap. Invoking [`clone`][clone] on `Arc` produces |
