Skip to content

Commit f96cc4d

Browse files
committed
Coroutine
1 parent 92a8d26 commit f96cc4d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1141,11 +1141,11 @@ Coroutine
11411141

11421142
```python
11431143
def coroutine(func):
1144-
def start(*args, **kwargs):
1144+
def out(*args, **kwargs):
11451145
cr = func(*args, **kwargs)
11461146
next(cr)
11471147
return cr
1148-
return start
1148+
return out
11491149
```
11501150

11511151
### Pipeline Example

0 commit comments

Comments
 (0)