Skip to content

Commit

Permalink
Correct formatting
Browse files Browse the repository at this point in the history
The variable name was not marked as verbatim which leads to wrong formatting of the following text.
  • Loading branch information
cknuepfer authored Nov 9, 2023
1 parent 9d394c4 commit c92c8ae
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions episodes/05-loop.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,7 @@ In this example, the list is three filenames: `basilisk.dat`, `minotaur.dat`, an
Each time the loop iterates, we first use `echo` to print the value that the variable
`$filename` currently holds. This is not necessary for the result, but beneficial for us here to
have an easier time to follow along.
Next, we will run the `head` command on the file currently referred to by $filename.
The first time through the loop,
Next, we will run the `head` command on the file currently referred to by `$filename`. The first time through the loop,
`$filename` is `basilisk.dat`.
The interpreter runs the command `head` on `basilisk.dat`
and pipes the first two lines to the `tail` command,
Expand Down

0 comments on commit c92c8ae

Please sign in to comment.