From 92a8d268cb6c0fe38c0e8135a2a4fed56ba199f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Fri, 28 Dec 2018 16:27:08 +0100 Subject: [PATCH] Coroutine --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 323fa4c..e001517 100644 --- a/README.md +++ b/README.md @@ -1135,7 +1135,7 @@ Coroutine * **If you built 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()** +* **All coroutines must be "primed" by first calling next().** * **Remembering to call next() is easy to forget.** * **Solved by wrapping coroutines with a decorator:**