Skip to content

Commit

Permalink
Change tomatos to tomatoes
Browse files Browse the repository at this point in the history
Co-authored-by: Toby Hodges <[email protected]>
  • Loading branch information
martinosorb and tobyhodges authored Aug 14, 2024
1 parent 5f03c1f commit 7e18fdf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions episodes/05-history.md
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ What is the output of the last command in

```bash
$ cd recipes
$ echo "I like tomatos, therefore I like ketchup" > ketchup.md
$ echo "I like tomatoes, therefore I like ketchup" > ketchup.md
$ git add ketchup.md
$ echo "ketchup enchances pasta dishes" > ketchup.md
$ git commit -m "My opinions about the red sauce"
Expand All @@ -456,10 +456,10 @@ $ cat ketchup.md # this will print the content of ketchup.md on screen
ketchup enchances pasta dishes
```
2. ```output
I like tomatos, therefore I like ketchup
I like tomatoes, therefore I like ketchup
```
3. ```output
I like tomatos, therefore I like ketchup
I like tomatoes, therefore I like ketchup
ketchup enchances pasta dishes
```
4. ```output
Expand Down Expand Up @@ -487,7 +487,7 @@ replaces the working copy with the most recently committed version of `ketchup.m
So, `cat ketchup.md` will output

```output
I like tomatos, therefore I like ketchup
I like tomatoes, therefore I like ketchup
```

:::::::::::::::::::::::::
Expand Down

0 comments on commit 7e18fdf

Please sign in to comment.