diff options
| author | Tomás Vallotton <tvallotton@uc.cl> | 2023-12-14 23:38:58 -0300 |
|---|---|---|
| committer | Tomás Vallotton <tvallotton@uc.cl> | 2024-01-20 10:14:25 -0300 |
| commit | 093f80ba7edc53a7e53c949fb0d083f00088d45c (patch) | |
| tree | b511411e2961595dae148761ae6c99f7aacb8142 /library/alloc/src/task.rs | |
| parent | f82437396fe2d21ae73134a6faa6c58bd03d96e4 (diff) | |
| download | rust-093f80ba7edc53a7e53c949fb0d083f00088d45c.tar.gz rust-093f80ba7edc53a7e53c949fb0d083f00088d45c.zip | |
chore: fix ci failures
Diffstat (limited to 'library/alloc/src/task.rs')
| -rw-r--r-- | library/alloc/src/task.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/alloc/src/task.rs b/library/alloc/src/task.rs index ce7aa3c44dc..611468a9fea 100644 --- a/library/alloc/src/task.rs +++ b/library/alloc/src/task.rs @@ -256,7 +256,7 @@ pub trait LocalWake { /// waker, it should override this method. By default, it clones the /// [`Rc`] and calls [`wake`] on the clone. /// - /// [`wake`]: Rc::wake + /// [`wake`]: LocalWaker::wake #[unstable(feature = "local_waker", issue = "118959")] fn wake_by_ref(self: &Rc<Self>) { self.clone().wake(); |
