diff options
author | Louis Brauer <1240462+louis77@users.noreply.github.com> | 2019-11-10 17:44:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-10 17:44:25 +0100 |
commit | 83cb919e5ed5c0f1d835bda0d2f690cc04eb74d5 (patch) | |
tree | f133a9791ab17af58cba12f53ad30f7c84866e94 | |
parent | 74d2ee855bd4a83659f3ecf6ff7a5f710413f38f (diff) |
Fix missing double quotes
Was breaking the syntax coloring
-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 } |