Skip to content

Commit

Permalink
Merge pull request #627 from evancharlton/patch-1
Browse files Browse the repository at this point in the history
chore: Fix a typo in tutorial
  • Loading branch information
martin-schulze-vireso committed Aug 8, 2022
2 parents 914880e + eff7ca5 commit dd2d573
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/CHANGELOG.md
Expand Up @@ -43,7 +43,7 @@ The format is based on [Keep a Changelog][kac] and this project adheres to

#### Documentation

* fix typos, spelling and links (#596, #604, #619)
* fix typos, spelling and links (#596, #604, #619, #627)
* fix redirection order of an example in the tutorial (#617)

## [1.7.0] - 2022-05-14
Expand Down
2 changes: 1 addition & 1 deletion docs/source/tutorial.rst
Expand Up @@ -257,7 +257,7 @@ This is a common mistake that can happen when our mind parses the file different
`run` is just a function, so the pipe won't actually be forwarded into the function. Bash reads this as `(run project.sh) | grep Welcome`,
instead of our intended `run (project.sh | grep Welcome)`.

Unfortunately, the latter is no valid bash syntax, so we have to work around it, e.g. by using a function:
Unfortunately, the latter is not valid bash syntax, so we have to work around it, e.g. by using a function:

.. code-block:: bash
Expand Down

0 comments on commit dd2d573

Please sign in to comment.