diff options
| author | Surya Midatala <surya.midatala@nutanix.com> | 2020-08-16 19:43:42 +0530 | 
|---|---|---|
| committer | Surya Midatala <surya.midatala@nutanix.com> | 2020-08-18 21:47:23 +0530 | 
| commit | 11f69796ee967b39c68a766eb49a9eaed205ff8b (patch) | |
| tree | 6563fa772b49242cfe4705cc0ba9f9efdb642027 /library/alloc/src/task.rs | |
| parent | 2c3dc04ea4071805fbd1b07bd726c1daf03c0384 (diff) | |
| download | rust-11f69796ee967b39c68a766eb49a9eaed205ff8b.tar.gz rust-11f69796ee967b39c68a766eb49a9eaed205ff8b.zip | |
Move to intra-doc links for task.rs and vec.rs
Diffstat (limited to 'library/alloc/src/task.rs')
| -rw-r--r-- | library/alloc/src/task.rs | 4 | 
1 files changed, 1 insertions, 3 deletions
| diff --git a/library/alloc/src/task.rs b/library/alloc/src/task.rs index 252e04a4105..5edc5796056 100644 --- a/library/alloc/src/task.rs +++ b/library/alloc/src/task.rs @@ -13,11 +13,9 @@ use crate::sync::Arc; /// /// This trait is a memory-safe and ergonomic alternative to constructing a /// [`RawWaker`]. It supports the common executor design in which the data used -/// to wake up a task is stored in an [`Arc`][arc]. Some executors (especially +/// to wake up a task is stored in an [`Arc`]. Some executors (especially /// those for embedded systems) cannot use this API, which is why [`RawWaker`] /// exists as an alternative for those systems. -/// -/// [arc]: ../../std/sync/struct.Arc.html #[unstable(feature = "wake_trait", issue = "69912")] pub trait Wake { /// Wake this task. | 
