Skip to content

Commit fded4ab

Browse files
fix: requirement fix + ch1 coroutine function correct definition.
1 parent 442f0fe commit fded4ab

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The [event loop](https://docs.python.org/3/library/asyncio-eventloop.html) is th
3737
### coroutines
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.
40-
Anything in Python that can be implemented with the ```async def``` statement is a coroutine. <br>
40+
Anything in Python that can be implemented with the ```async def``` statement is a coroutine function. <br>
4141
Here ```func``` is a coroutine:
4242
```python
4343
async def func():

requirements.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
pytest~=8.3.3
22
httpx~=0.27.2
3-
uvicorn~=0.30.2
4-
gunicorn~=19.9.0
5-
starlette==0.37.2
3+
starlette==0.41.0

0 commit comments

Comments
 (0)