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

@@ -63,7 +63,7 @@ mappingproxy(OrderedDict([('x', <Parameter "x">), ('y', <Parameter "y">)]))
## (c) Putting it Together
In link:ex6_1.html[Exercise 6.1], you created a class `Structure`
In [Exercise 6.1](ex6_1.md), you created a class `Structure`
that defined a generalized `__init__()`, `__setattr__()`, and `__repr__()`
method. That class required a user to define a `_fields` class
variable like this:
@@ -75,7 +75,7 @@ class Stock(Structure):
The problem with this class is that the `__init__()` function didn't
have a useful argument signature for the purposes of help and
keyword argument passing. In link:ex6_2.html[Exercise 6.2], you
keyword argument passing. In [Exercise 6.2](ex6_2.md), you
did a sneaky trick involving a special `self._init()` function. For example:
```python