aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc_src/for.txt
diff options
context:
space:
mode:
authorGravatar Konrad Borowski <x.fix@o2.pl>2015-02-06 07:48:47 +0100
committerGravatar Konrad Borowski <x.fix@o2.pl>2015-02-06 07:48:47 +0100
commitb5d9e366ad8555544908387da5b42c438d14fb59 (patch)
tree00d0e9346c53817d8fcc1d3d72be67b18fbc3c2c /doc_src/for.txt
parentd7ba6e4a1daee77be453efdcf277edc446fdfd81 (diff)
Mention that `for` variables are local.
This is the current behaviour, documentation can be updated if this behaviour changes, assuming it can, because it's an incompatible change.
Diffstat (limited to 'doc_src/for.txt')
-rw-r--r--doc_src/for.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc_src/for.txt b/doc_src/for.txt
index 15b28a25..affb58c6 100644
--- a/doc_src/for.txt
+++ b/doc_src/for.txt
@@ -7,7 +7,7 @@ for VARNAME in [VALUES...]; COMMANDS...; end
\subsection for-description Description
-`for` is a loop construct. It will perform the commands specified by `COMMANDS` multiple times. On each iteration, the environment variable specified by `VARNAME` is assigned a new value from `VALUES`. If `VALUES` is empty, `COMMANDS` will not be executed at all.
+`for` is a loop construct. It will perform the commands specified by `COMMANDS` multiple times. On each iteration, the local variable specified by `VARNAME` is assigned a new value from `VALUES`. If `VALUES` is empty, `COMMANDS` will not be executed at all.
\subsection for-example Example