Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Fix a typo in tutorial #627

Merged
merged 2 commits into from Aug 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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