diff --git a/variables.html b/variables.html index 27187d88..fe4c10aa 100644 --- a/variables.html +++ b/variables.html @@ -137,7 +137,7 @@ System.print(a) //! "a" doesn't exist anymore.
Variables defined at the top level of a script are top-level and are visible -to the module system. All other variables are local. +to the module system. All other variables are local. Declaring a variable in an inner scope with the same name as an outer one is called shadowing and is not an error (although it’s not something you likely intend to do much).