diff options
| author | bors <bors@rust-lang.org> | 2013-07-27 22:31:22 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-07-27 22:31:22 -0700 |
| commit | 9325535b41fa5a7cfac697e86ae86bd1384542e6 (patch) | |
| tree | f28193aa80d78d16efd25cf319fbd8b604125173 /src/libstd/task/mod.rs | |
| parent | 3078e83c3f1a643ddbdefa78095e4fbda3cecc02 (diff) | |
| parent | 39b3a0561f06b1ea01a12d8fc3372334116a7833 (diff) | |
| download | rust-9325535b41fa5a7cfac697e86ae86bd1384542e6.tar.gz rust-9325535b41fa5a7cfac697e86ae86bd1384542e6.zip | |
auto merge of #7978 : sstewartgallus/rust/rename_arc, r=bblum
To be more specific: `UPPERCASETYPE` was changed to `UppercaseType` `type_new` was changed to `Type::new` `type_function(value)` was changed to `value.method()`
Diffstat (limited to 'src/libstd/task/mod.rs')
| -rw-r--r-- | src/libstd/task/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/task/mod.rs b/src/libstd/task/mod.rs index 1ce8641085b..df927cb6a7a 100644 --- a/src/libstd/task/mod.rs +++ b/src/libstd/task/mod.rs @@ -677,7 +677,7 @@ pub unsafe fn rekillable<U>(f: &fn() -> U) -> U { /** * A stronger version of unkillable that also inhibits scheduling operations. - * For use with exclusive ARCs, which use pthread mutexes directly. + * For use with exclusive Arcs, which use pthread mutexes directly. */ pub unsafe fn atomically<U>(f: &fn() -> U) -> U { use rt::task::Task; |
