From f96cc4de305b9af03192320795fb300a83cfb469 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Fri, 28 Dec 2018 16:31:17 +0100 Subject: [PATCH] Coroutine --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e001517..c36655e 100644 --- a/README.md +++ b/README.md @@ -1141,11 +1141,11 @@ Coroutine ```python def coroutine(func): - def start(*args, **kwargs): + def out(*args, **kwargs): cr = func(*args, **kwargs) next(cr) return cr - return start + return out ``` ### Pipeline Example