Skip to content

Commit 5485877

Browse files
author
mjsandells
committed
minor text changes
1 parent 303dab0 commit 5485877

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

_episodes/05-loop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ being the first loop cycle, and 6 being the final loop cycle).
160160
We can call the [loop variable]({{ page.root }}/reference.html#loop-variable) anything we like, but
161161
there must be a colon at the end of the line starting the loop, and we must indent anything we
162162
want to run inside the loop. Unlike many other languages, there is no command to signify the end
163-
of the loop body (e.g. `end for`); what is indented after the `for` statement belongs to the loop.
163+
of the loop body (e.g. `end for`); everything indented after the `for` statement belongs to the loop.
164164

165165

166166
> ## What's in a name?

_episodes/12-cmdline.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ keypoints:
1818
The Jupyter Notebook and other interactive tools are great for prototyping code and exploring data,
1919
but sooner or later we will want to use our program in a pipeline
2020
or run it in a shell script to process thousands of data files.
21-
In order to do that,
21+
In order to do that in an efficient way,
2222
we need to make our programs work like other Unix command-line tools.
2323
For example,
2424
we may want a program that reads a dataset
@@ -79,7 +79,7 @@ We'll tackle these questions in turn below.
7979

8080
## Command-Line Arguments
8181

82-
Using the text editor of your choice,
82+
We are going to create a file with our python code in, then use the bash shell to run the code. Using the text editor of your choice,
8383
save the following in a text file called `sys_version.py`:
8484

8585
~~~

0 commit comments

Comments
 (0)