File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -212,8 +212,8 @@ not readily accessible from the current working directory.
212
212
## Exercises
213
213
214
214
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
217
217
directory or with Python's path settings. For this course, it is
218
218
assumed that you're writing all of your code in the ` Work/ ` directory.
219
219
For best results, you should make sure you're also in that directory
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ def follow(f):
20
20
...
21
21
22
22
# Consumer
23
- for line in follow(f): # Consumes vale from `yield` above
23
+ for line in follow(f): # Consumes value from `yield` above
24
24
...
25
25
```
26
26
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ Adding 3 4
29
29
30
30
### Local Variables
31
31
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
33
33
function.
34
34
35
35
``` python
You can’t perform that action at this time.
0 commit comments