diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2014-12-26 16:04:27 -0500 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2014-12-26 16:04:27 -0500 |
| commit | b8ffad5964e328340de0c03779577eb14caa16fc (patch) | |
| tree | 7361af3b160475fa6566c8780a582843d47741bb /src/liballoc | |
| parent | d10642ef0f8976b9fb08500acdff84e3990815fa (diff) | |
| download | rust-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.rs | 2 |
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 |
