docs: Fix missing semicolon in Bash group command example

This commit is contained in:
Ariel Fermani 2021-09-04 11:01:13 -03:00 committed by Fabian Homborg
parent aa58a54224
commit 2e24aaa605

View file

@ -294,7 +294,7 @@ This includes things like:
(foo; bar) | baz
# when it should really have been:
{ foo; bar } | baz
{ foo; bar; } | baz
# becomes
begin; foo; bar; end | baz