From bd377c8a4811cc7438e6549f5bd03e779480b4d9 Mon Sep 17 00:00:00 2001 From: Omar Emad Date: Sun, 7 Dec 2025 10:33:07 +0200 Subject: [PATCH] Fix link to blocking IO documentation in intro.md Updated the reference link for blocking IO in async functions to point to the correct documentation. --- src/intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intro.md b/src/intro.md index 44910a94..26a936e3 100644 --- a/src/intro.md +++ b/src/intro.md @@ -48,4 +48,4 @@ Async Rust is being actively worked on. If you want to follow development, you c Rust is an open source project. If you'd like to contribute to development of async Rust, start at the [contributing docs](https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md) in the main Rust repo. -[^blocking]: This is actually a bad example because `println` is *blocking IO* and it is generally a bad idea to do blocking IO in async functions. We'll explain what blocking IO is in [chapter TODO]() and why you shouldn't do blocking IO in an async function in [chapter TODO](). +[^blocking]: This is actually a bad example because `println` is *blocking IO* and it is generally a bad idea to do blocking IO in async functions. We'll explain what blocking IO is in [chapter TODO](https://rust-lang.github.io/async-book/part-guide/io.html) and why you shouldn't do blocking IO in an async function in [chapter TODO]().