diff options
author | LumenTeun <anton@lutic.org> | 2014-08-08 18:24:29 +0100 |
---|---|---|
committer | LumenTeun <anton@lutic.org> | 2014-08-08 18:24:29 +0100 |
commit | 43209662626cdb4ed4b9e656a72c092512c4e9cc (patch) | |
tree | 10a608b188cd12ace17b389276d09ac296d85e2d | |
parent | 8be20de321b2331ab717319ca3c57c460a85de7f (diff) |
Fixed typo.
-rw-r--r-- | bash.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bash.html.markdown b/bash.html.markdown index 96f2414d..2056a9ea 100644 --- a/bash.html.markdown +++ b/bash.html.markdown @@ -134,7 +134,7 @@ case "$VARIABLE" in esac # for loops iterate for as many arguments given: -# The contents of var $VARIABLE is printed three times. +# The contents of $VARIABLE is printed three times. for VARIABLE in {1..3} do echo "$VARIABLE" |