fix spawn function documentation (#1940)

This commit is contained in:
Juan Alvarez
2019-12-10 10:46:48 -05:00
committed by Lucio Franco
parent 41ffdbb7d9
commit 5d5755dca4
+1 -1
View File
@@ -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`.
///