From 9a3b8dc143b43edaebbf3b4782415ea963111da8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Sun, 18 Nov 2018 23:49:16 +0100 Subject: [PATCH] Tabulate --- README.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 4a9b083..36f17da 100644 --- a/README.md +++ b/README.md @@ -851,11 +851,9 @@ 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()** - -**• Remembering to call .next() is easy to forget.** - -**• Solved by wrapping coroutines with a decorator:** +* **All coroutines must be "primed" by first calling .next()** +* **Remembering to call .next() is easy to forget.** +* **Solved by wrapping coroutines with a decorator:** ```python def coroutine(func):