diff options
| author | Sam Payson <scpayson@gmail.com> | 2016-06-05 10:20:33 -0700 |
|---|---|---|
| committer | Sam Payson <scpayson@gmail.com> | 2016-06-05 10:20:33 -0700 |
| commit | be6c21f26771d19b9307a18074b686008d8ac8eb (patch) | |
| tree | f65614d948706d0f890d86f1e91778e4d20c306f /src/liballoc | |
| parent | 8cbffc5bcfbc4696173678d50d519e9e61676265 (diff) | |
| download | rust-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.rs | 2 |
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 |
