From 56cfe50929f5c305eb5e076a7be3641c01e73088 Mon Sep 17 00:00:00 2001 From: Hans Gerwitz Date: Sat, 1 Feb 2025 15:30:38 +0100 Subject: [PATCH] Add missing word in ch17-04-streams.md --- src/ch17-04-streams.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch17-04-streams.md b/src/ch17-04-streams.md index 042f2639d2..5ec13c8491 100644 --- a/src/ch17-04-streams.md +++ b/src/ch17-04-streams.md @@ -302,7 +302,7 @@ at least one await point in each iteration through the loop. Now, back in our main function’s async block, we can attempt to merge the `messages` and `intervals` streams, as shown in Listing 17-37. -+ ```rust,ignore,does_not_compile {{#rustdoc_include ../listings/ch17-async-await/listing-17-37/src/main.rs:main}}