From 52023cf002433e941ee6b9131ad69b01714a7339 Mon Sep 17 00:00:00 2001 From: Peng Date: Tue, 22 Feb 2022 16:28:33 -0800 Subject: [PATCH] Update spawning.md Fix a hyperlink typo (missing parentheis) --- contents/tokio/spawning.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contents/tokio/spawning.md b/contents/tokio/spawning.md index f722945f..e6f43326 100644 --- a/contents/tokio/spawning.md +++ b/contents/tokio/spawning.md @@ -163,7 +163,7 @@ help: to force the async block to take ownership of `v` (and any other 先别急着给它扣帽子,虽然我有时候也想这么做。。原因是它说的是类型必须活得比 `'static` 长,而不是值。当我们说一个值是 `'static` 时,意味着它将永远存活。这个很重要,因为编译器无法知道新创建的任务将存活多久,所以唯一的办法就是让任务永远存活。 -如果大家对于 `'&static` 和 `T: 'static` 较为模糊,强烈建议回顾下[该章节](https://course.rs/advance/lifetime/static.html。 +如果大家对于 `'&static` 和 `T: 'static` 较为模糊,强烈建议回顾下[该章节](https://course.rs/advance/lifetime/static.html)。 #### Send 约束 `tokio::spawn` 生成的任务必须实现 `Send` 特征,因为当这些任务在 `.await` 执行过程中发生阻塞时,Tokio 调度器会将任务在线程间移动。