From f12f6b9bd439e91641c878685be328f8a6d51bcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Tue, 19 Mar 2019 04:16:02 +0100 Subject: [PATCH] Coroutine --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 506878e..5b582cd 100644 --- a/README.md +++ b/README.md @@ -1573,7 +1573,7 @@ Coroutine --------- * **Similar to generator, but generator pulls data through the pipe with iteration, while coroutine pushes data into the pipeline with send().** * **Coroutines provide more powerful data routing possibilities than iterators.** -* **If you built a collection of simple data processing components, you can glue them together into complex arrangements of pipes, branches, merging, etc.** +* **If you build a collection of simple data processing components, you can glue them together into complex arrangements of pipes, branches, merging, etc.** ### Helper Decorator * **All coroutines must be "primed" by first calling next().**