Skip to content

Commit 5acf1d5

Browse files
committed
wow so many broken links
1 parent 1e94b1f commit 5acf1d5

File tree

9 files changed

+20
-16
lines changed

9 files changed

+20
-16
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,7 @@ have helped me with it:
103103

104104
***
105105

106-
You may use this tutorial at your own risk. See [LICENSE](LICENSE).
106+
You may use this tutorial freely at your own risk. See
107+
[LICENSE](LICENSE).
108+
109+
[List of contents](README.md#list-of-contents)

advanced/iterators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,5 +260,5 @@ behaves like `iter([1, 2, 3])`:
260260
You may use this tutorial freely at your own risk. See
261261
[LICENSE](../LICENSE).
262262

263-
[Previous](../basics/classes.md) | [Next](../README.md) |
263+
[Previous](magicmethods.md) | [Next](../README.md) |
264264
[List of contents](../README.md#advanced)

basics/answers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
These are my answers for exercises in the chapters. If your solution
44
isn't exactly like mine but it works just fine it's ok, and you can
5-
[ask me](contact-me.md) why I didn't do it like you did it.
5+
[ask me](../contact-me.md) why I didn't do it like you did it.
66

77
## ThinkPython: The way of the program
88

@@ -407,7 +407,7 @@ isn't exactly like mine but it works just fine it's ok, and you can
407407
print(get_greeting())
408408
```
409409

410-
3. See [the return or print section](defining-functions.html#return-or-print).
410+
3. See [the return or print section](defining-functions.md#return-or-print).
411411

412412
The greet function prints a greeting.
413413

basics/classes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,5 +424,5 @@ print("You entered " + word + ".")
424424
You may use this tutorial freely at your own risk. See
425425
[LICENSE](../LICENSE).
426426

427-
[Previous](modules.md) | [Next](../advanced/iterators.md) |
427+
[Previous](modules.md) | [Next](../advanced/magicmethods.md) |
428428
[List of contents](../README.md#basics)

basics/if.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ just press Ctrl+N.
9595
![New File in IDLE](../images/idle-new.png)
9696

9797
If you don't use IDLE, please take the time to
98-
[set up your editor correctly](editor-setup.md). When you're done your
98+
[set up your editor correctly](../editor-setup.md). When you're done your
9999
editor should give you four spaces every time you press tab.
100100

101101
Create a file called `rain.py`, and type the following content into it:

basics/installing-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ you.
2525
### Mac OSX
2626

2727
I don't have an up-to-date copy of Mac OSX. If you would like to write
28-
instructions for OSX, [tell me](contact-me.md).
28+
instructions for OSX, [tell me](../contact-me.md).
2929

3030
### GNU/Linux
3131

basics/loops.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ while True:
421421
***
422422

423423
You may use this tutorial freely at your own risk. See
424-
[LICENSE](LICENSE).
424+
[LICENSE](../LICENSE).
425425

426426
[Previous](lists-and-tuples.md) | [Next](trey-hunner-zip-and-enumerate.md) |
427-
[List of contents](README.md#list-of-contents)
427+
[List of contents](../README.md#basics)

basics/what-is-programming.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@ should you do if you have a problem with the tutorial?
8080
3. If there's something you haven't seen before in the tutorial and it's
8181
not explained, try to find it from the previous chapters.
8282
4. If you still have trouble understanding the tutorial or any other problems
83-
with the tutorial, please [tell me about it](contact-me.md). I want to
83+
with the tutorial, please [tell me about it](../contact-me.md). I want to
8484
improve this tutorial so other readers won't have the same problem as you
8585
have.
86-
5. See [Getting help](getting-help.md) if you can't contact me for some
86+
5. See [Getting help](../getting-help.md) if you can't contact me for some
8787
reason.
8888

8989
You are free to combine this tutorial with other learning resources. If this

editor-setup.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# Setting up an editor for programming
22

3-
Python comes with its IDLE, and you can use it in this tutorial. If you
4-
don't like using it for some reason, you need [PowerShell, command prompt or
5-
terminal](installing-python.md#if-you-like-working-with-powershell-command-prompt-or-terminal)
6-
for trying out things. You also need an editor for writing code that will
7-
be stored in files.
3+
Python comes with its IDLE, and you can use it in this tutorial. If you
4+
don't like using it for some reason, you need [PowerShell, command
5+
prompt or
6+
terminal](basics/installing-python.md#if-you-like-working-with-powershell-command-prompt-or-terminal)
7+
for trying out things. You also need an editor for writing code that
8+
will be stored in files.
89

910
If you use IDLE as your editor, **it comes with everything set up for
1011
you, and you don't need to worry about setting up anything**. If you

0 commit comments

Comments
 (0)