From c92c8ae31684dc502e1cc95878ba51bd3084204a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Kn=C3=BCpfer?= Date: Thu, 9 Nov 2023 09:49:44 +0100 Subject: [PATCH] Correct formatting The variable name was not marked as verbatim which leads to wrong formatting of the following text. --- episodes/05-loop.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/episodes/05-loop.md b/episodes/05-loop.md index 4c398a219..b5c5a72ac 100644 --- a/episodes/05-loop.md +++ b/episodes/05-loop.md @@ -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,