about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2014-12-26 16:04:27 -0500
committerSteve Klabnik <steve@steveklabnik.com>2014-12-26 16:04:27 -0500
commitb8ffad5964e328340de0c03779577eb14caa16fc (patch)
tree7361af3b160475fa6566c8780a582843d47741bb /src/liballoc
parentd10642ef0f8976b9fb08500acdff84e3990815fa (diff)
downloadrust-b8ffad5964e328340de0c03779577eb14caa16fc.tar.gz
rust-b8ffad5964e328340de0c03779577eb14caa16fc.zip
s/task/thread/g
A part of #20038
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 dfa55848c90..e927cb72a13 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