From 439670dd6d999c6cc0bae7e657404edb61be8db8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marko=20Mijajlovi=C4=87?= Date: Tue, 16 Dec 2025 02:00:41 +0100 Subject: [PATCH] fix typo in ch17-05-traits-for-async.md --- src/ch17-05-traits-for-async.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch17-05-traits-for-async.md b/src/ch17-05-traits-for-async.md index 4b502ceafe..7f2b66bd4d 100644 --- a/src/ch17-05-traits-for-async.md +++ b/src/ch17-05-traits-for-async.md @@ -131,7 +131,7 @@ yet ready. Back in Listing 17-13, we used the `trpl::join!` macro to await three futures. However, it’s common to have a collection such as a vector containing -some number futures that won’t be known until runtime. Let’s change Listing +some number of futures that won’t be known until runtime. Let’s change Listing 17-13 to the code in Listing 17-23 that puts the three futures into a vector and calls the `trpl::join_all` function instead, which won’t compile yet.