about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorSam Payson <scpayson@gmail.com>2016-06-05 10:20:33 -0700
committerSam Payson <scpayson@gmail.com>2016-06-05 10:20:33 -0700
commitbe6c21f26771d19b9307a18074b686008d8ac8eb (patch)
treef65614d948706d0f890d86f1e91778e4d20c306f /src/liballoc
parent8cbffc5bcfbc4696173678d50d519e9e61676265 (diff)
downloadrust-be6c21f26771d19b9307a18074b686008d8ac8eb.tar.gz
rust-be6c21f26771d19b9307a18074b686008d8ac8eb.zip
Revise wording in Rc documentation.
The term "thread-local" has a widely-accepted meaning which is not
the meaning it's used for here.
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/rc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/rc.rs b/src/liballoc/rc.rs
index cf4fb459bc1..d582de5740c 100644
--- a/src/liballoc/rc.rs
+++ b/src/liballoc/rc.rs
@@ -10,7 +10,7 @@
 
 #![allow(deprecated)]
 
-//! Thread-local reference-counted boxes (the `Rc<T>` type).
+//! Unsynchronized reference-counted boxes (the `Rc<T>` type).
 //!
 //! The `Rc<T>` type provides shared ownership of an immutable value.
 //! Destruction is deterministic, and will occur as soon as the last owner is