File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,8 @@ use heap::deallocate;
42
42
/// necessarily) at _exactly_ `MAX_REFCOUNT + 1` references.
43
43
const MAX_REFCOUNT : usize = ( isize:: MAX ) as usize ;
44
44
45
- /// A thread-safe reference-counting pointer.
45
+ /// A thread-safe reference-counting pointer. "Arc" stands for "Atomically
46
+ /// Reference Counted".
46
47
///
47
48
/// The type `Arc<T>` provides shared ownership of a value of type `T`,
48
49
/// allocated in the heap. Invoking [`clone`][clone] on `Arc` produces
Original file line number Diff line number Diff line change 10
10
11
11
#![ allow( deprecated) ]
12
12
13
- //! Single-threaded reference-counting pointers.
13
+ //! Single-threaded reference-counting pointers. "Rc" stands for "Reference
14
+ //! Counted".
14
15
//!
15
16
//! The type [`Rc<T>`][`Rc`] provides shared ownership of a value of type `T`,
16
17
//! allocated in the heap. Invoking [`clone`][clone] on [`Rc`] produces a new
You can’t perform that action at this time.
0 commit comments