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 fded4ab commit f1c0b4eCopy full SHA for f1c0b4e
docs/1. Introduction to Asynchronous Programming/index.md
@@ -38,7 +38,7 @@ The [event loop](https://docs.python.org/3/library/asyncio-eventloop.html) is th
38
Coroutines have been described as ["functions whose execution you can pause"](https://en.wikipedia.org/wiki/Coroutine). <br>
39
This seems confusing, but wait, we will clarify it.
40
Anything in Python that can be implemented with the ```async def``` statement is a coroutine function. <br>
41
-Here ```func``` is a coroutine:
+Here ```func``` is a coroutine function:
42
```python
43
async def func():
44
pass
0 commit comments