about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorSam Payson <scpayson@gmail.com>2016-07-07 08:40:15 -0700
committerSam Payson <scpayson@gmail.com>2016-07-07 08:40:15 -0700
commit46e7c9ec74ec437ca64bc095e7196f59e0d74148 (patch)
tree5b128e011fe8a7a7c22ae99242cf262c3e83cbd6 /src/liballoc
parentbe6c21f26771d19b9307a18074b686008d8ac8eb (diff)
downloadrust-46e7c9ec74ec437ca64bc095e7196f59e0d74148.tar.gz
rust-46e7c9ec74ec437ca64bc095e7196f59e0d74148.zip
Changed wording per aturon's comments.
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/rc.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/liballoc/rc.rs b/src/liballoc/rc.rs
index d582de5740c..b505162dc0a 100644
--- a/src/liballoc/rc.rs
+++ b/src/liballoc/rc.rs
@@ -10,7 +10,8 @@
 
 #![allow(deprecated)]
 
-//! Unsynchronized 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