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

@@ -8,7 +8,7 @@
*Files Modified:* `stock.py`
In link:ex1_5.html[Exercise 1.5], you defined a simple class
In [Exercise 1.5](ex1_5.md), you defined a simple class
`Stock` for representing a holding of stock. In this exercise,
we're simply going to add a few features to that class as well as
write some utility functions.
@@ -49,7 +49,7 @@ reads a file of portfolio data into a list of `Stock` objects. Here's how it sho
```
You already wrote a similar function as part of
link:ex2_3.html[Exercise 2.3]. Design discussion: Should
[Exercise 2.3](ex2_3.md). Design discussion: Should
`read_portfolio()` be a separate function or part of the class
definition?