Skip to content

Commit 32b5b39

Browse files
✏ Fix typos in docs/tutorial/index.md and docs/databases.md (#5)
Co-authored-by: Sebastián Ramírez <[email protected]>
1 parent 0269745 commit 32b5b39

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/databases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ As these **primary key** IDs can uniquely identify each row on the table for tea
250250

251251
<img alt="table relationships" src="/img/databases/relationships.svg">
252252

253-
So, in the table for heroes, we use the `team_id` column to define a relationship to the *foreign* table for teams. Each value in the `team_id` column on the table with heroes will be the same value as the `id` column of one row in the table wiwth teams.
253+
So, in the table for heroes, we use the `team_id` column to define a relationship to the *foreign* table for teams. Each value in the `team_id` column on the table with heroes will be the same value as the `id` column of one row in the table with teams.
254254

255255
In the table for heroes we have a **primary key** that is the `id`. But we also have another column `team_id` that refers to a **key** in a **foreign** table. There's a technical term for that too, the `team_id` is a "**foreign key**".
256256

docs/tutorial/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ $ python3 --version
9797
// This is too old! 😱
9898
Python 3.5.6
9999
// Let's see if python3.10 is available
100-
$ python3.10 --verson
100+
$ python3.10 --version
101101
// Oh, no, this one is not available 😔
102102
command not found: python3.10
103103
$ python3.9 --version

0 commit comments

Comments
 (0)