Skip to content

Commit af85e38

Browse files
committed
Fix broken links with linkcheck.py
1 parent 0a3536c commit af85e38

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

advanced/iters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ twice.
7474
>>>
7575
```
7676

77-
We have also used [enumerate](../basics/trey-hunner-zip-and-enumerate.md)
77+
We have also used [enumerate](../basics/zip-and-enumerate.md)
7878
before, and it actually remembers its position also:
7979

8080
```python

basics/defining-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ howdy hi
453453
Typing `say_hi` just gives us the value of the `say_hi` variable, which
454454
is the function we defined. But `say_hi()` **calls** that function, so
455455
it runs and gives us a return value. The return value is None so the
456-
`>>>` prompt [doesn't show it](#variables.md#none).
456+
`>>>` prompt [doesn't show it](variables.md#none).
457457

458458
But we know that the print function shows None, so what happens if we
459459
wrap the whole thing in `print()`?

0 commit comments

Comments
 (0)