diff --git a/src/liballoc/rc.rs b/src/liballoc/rc.rs index a873be455d5..2beb652aa01 100644 --- a/src/liballoc/rc.rs +++ b/src/liballoc/rc.rs @@ -10,7 +10,8 @@ #![allow(deprecated)] -//! Thread-local reference-counted boxes (the `Rc` type). +//! Unsynchronized reference-counted boxes (the `Rc` type) which are usable +//! only within a single thread. //! //! The `Rc` type provides shared ownership of an immutable value. //! Destruction is deterministic, and will occur as soon as the last owner is