From dd4ceba24f07179df10e0dc07c56111545c2c9db Mon Sep 17 00:00:00 2001 From: douglarek Date: Sat, 11 Feb 2023 23:46:35 +0800 Subject: [PATCH] [ch20-02-multithreaded.md] typo fix --- src/ch20-02-multithreaded.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch20-02-multithreaded.md b/src/ch20-02-multithreaded.md index 58208fb..6805cde 100644 --- a/src/ch20-02-multithreaded.md +++ b/src/ch20-02-multithreaded.md @@ -91,7 +91,7 @@ 接着编辑 *main.rs* 文件通过在 *src/main.rs* 的开头增加如下代码将 `ThreadPool` 从库 crate 引入作用域: -文件名:src/bin/main.rs +文件名:src/main.rs ```rust,ignore {{#rustdoc_include ../listings/ch20-web-server/no-listing-01-define-threadpool-struct/src/main.rs:here}}