about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-12-29 16:36:20 -0800
committerAlex Crichton <alex@alexcrichton.com>2014-12-29 16:36:20 -0800
commit4717f07989fe4a5d8e473961b86a613d4bb07f35 (patch)
tree5f71acec09255b1fe107f248e5c4b7e88b0ace6a /src/liballoc
parent6fabf421f059a47ffa1faf570823c8511e73c4e2 (diff)
parentb8ffad5964e328340de0c03779577eb14caa16fc (diff)
downloadrust-4717f07989fe4a5d8e473961b86a613d4bb07f35.tar.gz
rust-4717f07989fe4a5d8e473961b86a613d4bb07f35.zip
rollup merge of #20248: steveklabnik/gh20038
A part of #20038

This is just the beginning of what needs to be done, but it's some of it.

/cc @aturon
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 90e126bef4d..214fae02ce2 100644
--- a/src/liballoc/rc.rs
+++ b/src/liballoc/rc.rs
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-//! Task-local reference-counted boxes (the `Rc<T>` type).
+//! Thread-local 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 gone. It is marked as non-sendable because it