We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92a8d26 commit f96cc4dCopy full SHA for f96cc4d
README.md
@@ -1141,11 +1141,11 @@ Coroutine
1141
1142
```python
1143
def coroutine(func):
1144
- def start(*args, **kwargs):
+ def out(*args, **kwargs):
1145
cr = func(*args, **kwargs)
1146
next(cr)
1147
return cr
1148
- return start
+ return out
1149
```
1150
1151
### Pipeline Example
0 commit comments