Fix broken links

This commit is contained in:
Matúš Ferech
2023-07-17 17:41:16 +02:00
parent 7d4b30154a
commit 8d3bb056fa
16 changed files with 28 additions and 28 deletions

View File

@@ -19,7 +19,7 @@ clean-up code that relies on generators.
## (a) Example: Receiving messages
In link:ex8_3.html[Exercise 8.3], we looked at the definitions of coroutines.
In [Exercise 8.3](ex8_3.md), we looked at the definitions of coroutines.
Coroutines were functions that you sent data to. For example:
```python
@@ -80,7 +80,7 @@ is a bit more descriptive--it indicates that the function will yield until
it receives a message of a given type.
Now, modify all of the coroutines in `coticker.py` to use the new `receive()`
function and make sure the code from link:ex8_3.html[Exercise 8.3] still
function and make sure the code from [Exercise 8.3](ex8_3.md) still
works.
## (b) Wrapping a Socket