Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion data/part-11/2-more-comprehensions.md
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ The principle of the comprehension statement is exactly the same as with lists,

`{<key expression> : <value expression> for <item> in <series>}`

To finish off this section, lets take a look at factorials again. This time we store the results in a dictionary. The number itself is the key, while the value is the result of the factorial from our function:
To finish off this section, let's take a look at factorials again. This time we store the results in a dictionary. The number itself is the key, while the value is the result of the factorial from our function:

```python
def factorial(n: int):
Expand Down