From ead81e11f75ac8a2ab03333815f3407230f75ec4 Mon Sep 17 00:00:00 2001 From: qwer252 Date: Thu, 12 Jun 2025 14:44:40 +0800 Subject: [PATCH] Update lib.rs --- listings/ch21-web-server/listing-21-14/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/listings/ch21-web-server/listing-21-14/src/lib.rs b/listings/ch21-web-server/listing-21-14/src/lib.rs index c1fa182..76dcdb0 100644 --- a/listings/ch21-web-server/listing-21-14/src/lib.rs +++ b/listings/ch21-web-server/listing-21-14/src/lib.rs @@ -22,7 +22,7 @@ impl ThreadPool { let mut threads = Vec::with_capacity(size); for _ in 0..size { - // create some threads and store them in the vector + // 创建一些线程并将它们存入 vector 中。 } ThreadPool { threads }