Skip to content

Commit dc4c3a7

Browse files
authored
Merge pull request #146 from MilanGrujicic/bug_02_build_word_guessing_game_with_python_typo
Proposal of fix to a typo in build a word guessing game with python project text.
2 parents cdd9a06 + 4328178 commit dc4c3a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/build-a-word-guessing-game-with-python/build-a-word-guessing-game-with-python.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Now, we will randomly choose one of these words to be the correct answer. 🎲
7474
word = random.choice(word_bank)
7575
```
7676

77-
The `random.choice()` method is used to randomly selects a word from the `word_bank` list and assigns it to the `word` variable. All possible options having an equal probability of being chosen.
77+
The `random.choice()` method is used to randomly select a word from the `word_bank` list and to assign it to the `word` variable. All possible options have an equal probability of being chosen.
7878

7979
## Finishing the Setup
8080

0 commit comments

Comments
 (0)