Skip to content

Commit 685413b

Browse files
Merge pull request #5 from aligheshlaghi97/hotfix/dependency+ch1
fix: coroutine -> coroutine function.
2 parents 2dbb806 + f1c0b4e commit 685413b

File tree

1 file changed

+1
-1
lines changed
  • docs/1. Introduction to Asynchronous Programming

1 file changed

+1
-1
lines changed

docs/1. Introduction to Asynchronous Programming/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The [event loop](https://docs.python.org/3/library/asyncio-eventloop.html) is th
3838
Coroutines have been described as ["functions whose execution you can pause"](https://en.wikipedia.org/wiki/Coroutine). <br>
3939
This seems confusing, but wait, we will clarify it.
4040
Anything in Python that can be implemented with the ```async def``` statement is a coroutine function. <br>
41-
Here ```func``` is a coroutine:
41+
Here ```func``` is a coroutine function:
4242
```python
4343
async def func():
4444
pass

0 commit comments

Comments
 (0)