Browse Source

📝 Update comma in `docs/en/docs/async.md` (#12062)

Co-authored-by: Alec Gillis <[email protected]>
Co-authored-by: Sofie Van Landeghem <[email protected]>
pull/12085/head
Alec Gillis 7 months ago
committed by GitHub
parent
commit
cabed9efb6
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      docs/en/docs/async.md

2
docs/en/docs/async.md

@ -387,7 +387,7 @@ In previous versions of NodeJS / Browser JavaScript, you would have used "callba
## Coroutines
**Coroutine** is just the very fancy term for the thing returned by an `async def` function. Python knows that it is something like a function that it can start and that it will end at some point, but that it might be paused ⏸ internally too, whenever there is an `await` inside of it.
**Coroutine** is just the very fancy term for the thing returned by an `async def` function. Python knows that it is something like a function, that it can start and that it will end at some point, but that it might be paused ⏸ internally too, whenever there is an `await` inside of it.
But all this functionality of using asynchronous code with `async` and `await` is many times summarized as using "coroutines". It is comparable to the main key feature of Go, the "Goroutines".

Loading…
Cancel
Save