Skip to content

Commit 8242a30

Browse files
authored
Rollup merge of rust-lang#34097 - arbitrary-cat:master, r=steveklabnik
Revise wording in Rc documentation. The term "thread-local" has a widely accepted meaning which is not the meaning it's used for here.
2 parents 9b4e2a5 + 46e7c9e commit 8242a30

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/liballoc/rc.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010

1111
#![allow(deprecated)]
1212

13-
//! Thread-local reference-counted boxes (the `Rc<T>` type).
13+
//! Unsynchronized reference-counted boxes (the `Rc<T>` type) which are usable
14+
//! only within a single thread.
1415
//!
1516
//! The `Rc<T>` type provides shared ownership of an immutable value.
1617
//! Destruction is deterministic, and will occur as soon as the last owner is

0 commit comments

Comments
 (0)