diff options
author | Andre Polykanine <ap@oire.me> | 2019-11-11 00:05:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-11 00:05:48 +0200 |
commit | d37473589491fc16cdd96e33e8c80ed7cc083183 (patch) | |
tree | f133a9791ab17af58cba12f53ad30f7c84866e94 /de-de | |
parent | 74d2ee855bd4a83659f3ecf6ff7a5f710413f38f (diff) | |
parent | 83cb919e5ed5c0f1d835bda0d2f690cc04eb74d5 (diff) |
Merge pull request #3764 from louis77/patch-1
[bash/de] Fix missing double quotes
Diffstat (limited to 'de-de')
-rw-r--r-- | de-de/bash-de.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/de-de/bash-de.html.markdown b/de-de/bash-de.html.markdown index 7a0db157..3fb3e71f 100644 --- a/de-de/bash-de.html.markdown +++ b/de-de/bash-de.html.markdown @@ -217,7 +217,7 @@ done function foo () { echo "Argumente funktionieren wie bei skripts: $@" - echo Und: $1 $2..." + echo "Und: $1 $2..." echo "Dies ist eine Funktion" return 0 } |