From e42f492640332fad5b403ca81dc515819feea734 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jure=20=C5=A0orn?= <sornjure@gmail.com>
Date: Fri, 28 Dec 2018 16:26:33 +0100
Subject: [PATCH] Coroutine

---
 README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 3fb1cd3..323fa4c 100644
--- a/README.md
+++ b/README.md
@@ -1135,8 +1135,8 @@ 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.**  
+* **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