From ae15c0471e0aa01392608b224ec8c3396cc23d66 Mon Sep 17 00:00:00 2001 From: sope Date: Wed, 26 Jan 2022 16:11:22 +0800 Subject: [PATCH] Update getting-startted.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 实例代码有误 --- book/contents/tokio/getting-startted.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/book/contents/tokio/getting-startted.md b/book/contents/tokio/getting-startted.md index 605bc253..ebe71fb5 100644 --- a/book/contents/tokio/getting-startted.md +++ b/book/contents/tokio/getting-startted.md @@ -128,7 +128,7 @@ pub async fn connect(addr: T) -> Result { 由于 `async` 会返回一个 `Future`,因此我们还需要配合使用 `.await` 来让该 `Future` 运行起来,最终获得返回值: ```rust async fn say_to_world() -> String { - String::from("hello, world") + String::from("world") } #[tokio::main] @@ -139,8 +139,8 @@ async fn main() { // 首先打印出 "hello" println!("hello"); - // 使用 `.await` 让 `say_world` 开始运行起来 - op.await; + // 使用 `.await` 让 `say_to_world` 开始运行起来 + println!("{}", op.await); } ``` @@ -195,4 +195,4 @@ tokio = { version = "1", features = ["full"] } 总之,`tokio` 做的事情其实是细雨润无声的,在大多数时候,我们并不能感觉到它的存在,但是它确实是异步编程中最重要的一环(或者之一),深入了解它对我们的未来之路会有莫大的帮助。 -接下来,正式开始 `tokio` 的学习之旅。 \ No newline at end of file +接下来,正式开始 `tokio` 的学习之旅。