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

@@ -13,7 +13,7 @@
For this exercise the `stocksim.py` program should still be
running in the background.
In link:ex8_2.html[Exercise 8.2] you wrote some code that used
In [Exercise 8.2](ex8_2.md) you wrote some code that used
generators to set up a processing pipeline. A key aspect of that
program was the idea of data flowing between generator functions. A
very similar kind of dataflow can be set up using coroutines. The
@@ -24,7 +24,7 @@ processing elements as opposed to pulling data out with a for-loop.
Getting started with coroutines can be a little tricky. Here is an
example program that performs the same task as
link:ex8_2.html[Exercise 8.2], but with coroutines. Take this program
[Exercise 8.2](ex8_2.md), but with coroutines. Take this program
and copy it into a file called `cofollow.py`.
```python
@@ -71,7 +71,7 @@ Run this program and make sure produces output.. Make sure you understand how
## (b) Build some pipeline components
In a file `coticker.py`, build a series of pipeline components that carry out the same tasks as
the `ticker.py` program in link:ex8_2.html[Exercise 8.2]. Here is the implementation of the
the `ticker.py` program in [Exercise 8.2](ex8_2.md). Here is the implementation of the
various pieces.
```python