From c801d78551d7b6a0d5c7f7b731fc8a3efd9b8a7b Mon Sep 17 00:00:00 2001 From: Emanuel Angelo Date: Tue, 28 Mar 2023 12:34:40 +0100 Subject: [PATCH] Add space between punctuation and the following word --- chapters/coroutines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapters/coroutines.md b/chapters/coroutines.md index e7382ad..8198808 100644 --- a/chapters/coroutines.md +++ b/chapters/coroutines.md @@ -80,7 +80,7 @@ Consumer got 4 Consumer got 9 ``` -Also, with coroutines, data can be sent to multiple destinations.The following example implements two consumers where the first only prints numbers in 0..10 and the second only print numbers in 10..20: +Also, with coroutines, data can be sent to multiple destinations. The following example implements two consumers where the first only prints numbers in 0..10 and the second only print numbers in 10..20: ```Python def producer(consumers):