Skip to content

Commit 9a3cd38

Browse files
committed
Various typos fixed
1 parent 88f8376 commit 9a3cd38

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Notes/03_Program_organization/04_Modules.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,8 +212,8 @@ not readily accessible from the current working directory.
212212
## Exercises
213213

214214
For this exercise involving modules, it is critically important to
215-
make sure you are running Python in a proper environment. Modules are
216-
usually when programmers encounter problems with the current working
215+
make sure you are running Python in a proper environment. Modules
216+
often present new programmers with problems related to the current working
217217
directory or with Python's path settings. For this course, it is
218218
assumed that you're writing all of your code in the `Work/` directory.
219219
For best results, you should make sure you're also in that directory

Notes/06_Generators/03_Producers_consumers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def follow(f):
2020
...
2121

2222
# Consumer
23-
for line in follow(f): # Consumes vale from `yield` above
23+
for line in follow(f): # Consumes value from `yield` above
2424
...
2525
```
2626

Notes/07_Advanced_Topics/03_Returning_functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Adding 3 4
2929

3030
### Local Variables
3131

32-
Observe how to inner function refers to variables defined by the outer
32+
Observe how the inner function refers to variables defined by the outer
3333
function.
3434

3535
```python

0 commit comments

Comments
 (0)