From 5d5755dca4586f80d591e5d61de3f245bf8c4506 Mon Sep 17 00:00:00 2001 From: Juan Alvarez Date: Tue, 10 Dec 2019 09:46:48 -0600 Subject: [PATCH] fix spawn function documentation (#1940) --- tokio/src/task/spawn.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio/src/task/spawn.rs b/tokio/src/task/spawn.rs index 131fca5b3..4d18ee231 100644 --- a/tokio/src/task/spawn.rs +++ b/tokio/src/task/spawn.rs @@ -52,7 +52,7 @@ doc_rt_core! { /// /// # Using `!Send` values from a task /// - /// The task supplied to `spawn` must implement `!Send`. However, it is + /// The task supplied to `spawn` must implement `Send`. However, it is /// possible to **use** `!Send` values from the task as long as they only /// exist between calls to `.await`. ///