summaryrefslogtreecommitdiffhomepage
path: root/de-de
diff options
context:
space:
mode:
authorLouis Brauer <1240462+louis77@users.noreply.github.com>2019-11-10 17:44:25 +0100
committerGitHub <noreply@github.com>2019-11-10 17:44:25 +0100
commit83cb919e5ed5c0f1d835bda0d2f690cc04eb74d5 (patch)
treef133a9791ab17af58cba12f53ad30f7c84866e94 /de-de
parent74d2ee855bd4a83659f3ecf6ff7a5f710413f38f (diff)
Fix missing double quotes
Was breaking the syntax coloring
Diffstat (limited to 'de-de')
-rw-r--r--de-de/bash-de.html.markdown2
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
}