From 9b81a65a5b22419fe82d4ff0966a9e1d3ef4dd3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Sun, 18 Nov 2018 23:40:08 +0100 Subject: [PATCH] Tabulate --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index cd62a57..daf56d5 100644 --- a/README.md +++ b/README.md @@ -844,11 +844,11 @@ def eval_(node): Coroutine --------- -**• Similar to Generator, but Generator pulls data through the pipe with iteration, while Coroutine pushes data into the pipeline with send().** +* **• 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.** +* **• 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 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()**