aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorStjepan Glavina <stjepang@gmail.com>2020-09-22 21:42:07 +0200
committerStjepan Glavina <stjepang@gmail.com>2020-09-22 21:42:07 +0200
commit68e3f5a6e24532b5f1ec69ab610ba05b28a74bb6 (patch)
treef194b8678a273281abef208e717d6e93fe7072aa /src
parent0a2257c2e71b78e85180fdf9e22e418e74f81282 (diff)
downloadasync-task-68e3f5a6e24532b5f1ec69ab610ba05b28a74bb6.tar.gz
Docs
Diffstat (limited to 'src')
-rw-r--r--src/task.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/task.rs b/src/task.rs
index 9ec4c7f..b9c251f 100644
--- a/src/task.rs
+++ b/src/task.rs
@@ -20,7 +20,7 @@ use crate::state::*;
/// method.
///
/// Note that canceling a task actually wakes it and reschedules one last time. Then, the executor
-/// can destroy the task by simply dropping its [`Runnable`][`crate::Runnable`] or by invoking
+/// can destroy the task by simply dropping its [`Runnable`][`super::Runnable`] or by invoking
/// [`run()`][`super::Runnable::run()`].
///
/// # Examples