Fix missing double quotes

Was breaking the syntax coloring
This commit is contained in:
Louis Brauer 2019-11-10 17:44:25 +01:00 committed by GitHub
parent 74d2ee855b
commit 83cb919e5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
}