From a927107bfe501a44dde1560a5942b1471c11c71d Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Thu, 4 Mar 2021 15:32:51 -0800 Subject: [PATCH] Use draft chapters for "todo" chapters. --- book.toml | 1 + src/404.md | 0 src/SUMMARY.md | 16 ++++++++-------- 3 files changed, 9 insertions(+), 8 deletions(-) delete mode 100644 src/404.md diff --git a/book.toml b/book.toml index a10fa4a..96ba9ed 100644 --- a/book.toml +++ b/book.toml @@ -9,6 +9,7 @@ create-missing = false [output.html] git-repository-url = "https://github.com/rust-lang/async-book" +site-url = "/async-book/" [output.linkcheck] follow-web-links = true diff --git a/src/404.md b/src/404.md deleted file mode 100644 index e69de29..0000000 diff --git a/src/SUMMARY.md b/src/SUMMARY.md index 842bd2c..63bff76 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -16,9 +16,9 @@ - [Executing Multiple Futures at a Time](06_multiple_futures/01_chapter.md) - [`join!`](06_multiple_futures/02_join.md) - [`select!`](06_multiple_futures/03_select.md) - - [TODO: Spawning](404.md) - - [TODO: Cancellation and Timeouts](404.md) - - [TODO: `FuturesUnordered`](404.md) + - [TODO: Spawning]() + - [TODO: Cancellation and Timeouts]() + - [TODO: `FuturesUnordered`]() - [Workarounds to Know and Love](07_workarounds/01_chapter.md) - [`?` in `async` Blocks](07_workarounds/02_err_in_async_blocks.md) - [`Send` Approximation](07_workarounds/03_send_approximation.md) @@ -29,8 +29,8 @@ - [Running Asynchronous Code](09_example/01_running_async_code.md) - [Handling Connections Concurrently](09_example/02_handling_connections_concurrently.md) - [Testing the Server](09_example/03_tests.md) -- [TODO: I/O](404.md) - - [TODO: `AsyncRead` and `AsyncWrite`](404.md) -- [TODO: Asynchronous Design Patterns: Solutions and Suggestions](404.md) - - [TODO: Modeling Servers and the Request/Response Pattern](404.md) - - [TODO: Managing Shared State](404.md) +- [TODO: I/O]() + - [TODO: `AsyncRead` and `AsyncWrite`]() +- [TODO: Asynchronous Design Patterns: Solutions and Suggestions]() + - [TODO: Modeling Servers and the Request/Response Pattern]() + - [TODO: Managing Shared State]()