Merge pull request #340 from JohnYangSam/patch-1

[bash/en] Correct bash for...in loop example
This commit is contained in:
Adam Bard 2013-09-13 10:14:41 -07:00
commit 4723fc11da

View File

@ -82,7 +82,7 @@ esac
#For loops iterate for as many arguments given:
#The contents of var $VARIABLE is printed three times.
for $VARIABLE in x y z
for VARIABLE in x y z
do
echo "$VARIABLE"
done