summaryrefslogtreecommitdiffstats
path: root/tokio/src/task/spawn.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio/src/task/spawn.rs')
-rw-r--r--tokio/src/task/spawn.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tokio/src/task/spawn.rs b/tokio/src/task/spawn.rs
index 6fdff651..e0d19fd5 100644
--- a/tokio/src/task/spawn.rs
+++ b/tokio/src/task/spawn.rs
@@ -4,7 +4,7 @@ use crate::task::JoinHandle;
use std::future::Future;
/// Spawns a new asynchronous task, returning a
-/// [`JoinHandle`](super::JoinHandle)] for it.
+/// [`JoinHandle`](super::JoinHandle) for it.
///
/// Spawning a task enables the task to execute concurrently to other tasks. The
/// spawned task may execute on the current thread, or it may be sent to a