aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/src/raw/waker.rs
diff options
context:
space:
mode:
authorJames Munns <[email protected]>2025-04-03 10:35:00 +0200
committerJames Munns <[email protected]>2025-04-03 10:35:00 +0200
commitb7e1b1ca941b3b92dede55f2a5b65fcad788ce42 (patch)
treec184af8c541e55fa4a9b5aba12808747df0fe016 /embassy-executor/src/raw/waker.rs
parent45c4f0cb0590453009994d765cde604a082d4588 (diff)
Fix some intra-doc links
Diffstat (limited to 'embassy-executor/src/raw/waker.rs')
-rw-r--r--embassy-executor/src/raw/waker.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-executor/src/raw/waker.rs b/embassy-executor/src/raw/waker.rs
index b7d57c314..d0d7b003d 100644
--- a/embassy-executor/src/raw/waker.rs
+++ b/embassy-executor/src/raw/waker.rs
@@ -26,7 +26,7 @@ pub(crate) unsafe fn from_task(p: TaskRef) -> Waker {
26/// (1 word) instead of full Wakers (2 words). This saves a bit of RAM and helps 26/// (1 word) instead of full Wakers (2 words). This saves a bit of RAM and helps
27/// avoid dynamic dispatch. 27/// avoid dynamic dispatch.
28/// 28///
29/// You can use the returned task pointer to wake the task with [`wake_task`](super::wake_task). 29/// You can use the returned task pointer to wake the task with [`wake_task`].
30/// 30///
31/// # Panics 31/// # Panics
32/// 32///