Skip to content

Commit 48a2e24

Browse files
authored
Fix a few typos (#43)
1 parent 5183b3d commit 48a2e24

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ than complex.
6767

6868
- **Important:** [getting help](getting-help.md)
6969
- [Contact me](contact-me.md)
70-
- Answers for excercises in [basics](basics/answers.md) and
70+
- Answers for exercises in [basics](basics/answers.md) and
7171
[advanced](advanced/answers.md) sections
7272
- [The TODO list](TODO.md)
7373

basics/answers.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ isn't exactly like mine but it works just fine it's ok, and you can
2525
`print('You entered:', something)`.
2626

2727
2. The broken code has mostly the same issues as exercise 1. Here are
28-
the problems that excercise 1 doesn't have:
28+
the problems that exercise 1 doesn't have:
2929

3030
- The if-elif-else has a blank line at a confusing place. Delete it.
3131
- After deleting the code, it looks quite dense. Add a new blank

basics/editor-setup.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ everything and recommend to everyone.
2525

2626
If you aren't sure about which editor you should use, I recommend
2727
Porcupine. It's a simple editor I wrote in Python; it lets you edit
28-
files and it doesn't have too many other featues. [Install it with these
28+
files and it doesn't have too many other features. [Install it with these
2929
instructions](https://github.com/Akuli/porcupine/#installing-porcupine),
3030
and then [learn to use it by writing the classic Hello World
3131
program](https://github.com/Akuli/porcupine/wiki/First-Program). Then

basics/handy-stuff-strings.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ ValueError: could not convert string to float: 'hello'
327327

328328
- Python has many string methods. Use
329329
[the documentation](https://docs.python.org/3/library/stdtypes.html#string-methods)
330-
or `help(str)` when you don't rememeber something about them.
330+
or `help(str)` when you don't remember something about them.
331331
- String formatting means adding other things to the middle of a string.
332332
There are multiple ways to do this in Python. You should know how to
333333
use at least one of these ways.

0 commit comments

Comments
 (0)