Skip to content

Commit

Permalink
Rollup merge of rust-lang#34097 - arbitrary-cat:master, r=steveklabnik
Browse files Browse the repository at this point in the history
Revise wording in Rc documentation.

The term "thread-local" has a widely accepted meaning which is not
the meaning it's used for here.
  • Loading branch information
Manishearth authored Jul 8, 2016
2 parents 9b4e2a5 + 46e7c9e commit 8242a30
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/liballoc/rc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@

#![allow(deprecated)]

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

0 comments on commit 8242a30

Please sign in to comment.