aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc_src/set.txt
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2007-08-02 03:35:24 +1000
committerGravatar axel <axel@liljencrantz.se>2007-08-02 03:35:24 +1000
commitdf55e89bbb5bb382bd13ab8f1a503636e52e3568 (patch)
tree8badc157cf753d353fbacd8e6f91e35c0369a58a /doc_src/set.txt
parent91de143003c17571f028a06db23086758b16697f (diff)
Spelling fixes from Chris Rebert
darcs-hash:20070801173524-ac50b-760d9ddf0e68aa24cd570b542824a7f2b3248ff5.gz
Diffstat (limited to 'doc_src/set.txt')
-rw-r--r--doc_src/set.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc_src/set.txt b/doc_src/set.txt
index a7d72abb..6d5b0fe8 100644
--- a/doc_src/set.txt
+++ b/doc_src/set.txt
@@ -43,7 +43,7 @@ the last index of an array.
The scoping rules when creating or updating a variable are:
-# If a variable is explicitly set to either universal, global or local, that setting will be honored. If a variable of the same name exists in a different scope, that variable will not be changed.
--# If a variable is not explicitly set to be either universal, global or local, but has been previously defined, the previos variable scope is used.
+-# If a variable is not explicitly set to be either universal, global or local, but has been previously defined, the previous variable scope is used.
-# If a variable is not explicitly set to be either universal, global or local and has never before been defined, the variable will be local to the currently executing functions. If no function is executing, the variable will be global.
The exporting rules when creating or updating a variable are identical