File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -42,8 +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. " Arc" stands for " Atomically
46
- /// Reference Counted" .
45
+ /// A thread-safe reference-counting pointer. ' Arc' stands for ' Atomically
46
+ /// Reference Counted' .
47
47
///
48
48
/// The type `Arc<T>` provides shared ownership of a value of type `T`,
49
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. "Rc" stands for " Reference
14
- //! Counted" .
13
+ //! Single-threaded reference-counting pointers. 'Rc' stands for ' Reference
14
+ //! Counted' .
15
15
//!
16
16
//! The type [`Rc<T>`][`Rc`] provides shared ownership of a value of type `T`,
17
17
//! allocated in the heap. Invoking [`clone`][clone] on [`Rc`] produces a new
@@ -267,7 +267,8 @@ struct RcBox<T: ?Sized> {
267
267
value : T ,
268
268
}
269
269
270
- /// A single-threaded reference-counting pointer.
270
+ /// A single-threaded reference-counting pointer. 'Rc' stands for 'Reference
271
+ /// Counted'.
271
272
///
272
273
/// See the [module-level documentation](./index.html) for more details.
273
274
///
You can’t perform that action at this time.
0 commit comments