Skip to content

Commit a765c7f

Browse files
committed
tvN fixes
1 parent 796a91f commit a765c7f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

advanced/datatypes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
work because they're not as simple as the things that are here and i
55
don't actually use them that much)
66

7-
Now we know how to ues lists, tuples and dictionaries. They are commonly
7+
Now we know how to use lists, tuples and dictionaries. They are commonly
88
used data types in Python, and there's nothing wrong with them. In this
99
chapter we'll learn more data types that make some things easier. You
1010
can always do everything with lists and dictionaries, but these data

basics/defining-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ None
468468
```
469469

470470
The `print(say_hi())` thing looks a bit weird at first, but it's easy to
471-
understand. There's a print insnde `say_hi` and there's also the print
471+
understand. There's a print inside `say_hi` and there's also the print
472472
we just wrote, so two things are printed. Python first ran `say_hi()`,
473473
and it returned None so Python did `print(None)`. Adding an extra
474474
`print()` around a function call is actually a common mistake, and I

0 commit comments

Comments
 (0)