diff --git a/doc/site/variables.markdown b/doc/site/variables.markdown index b0aefc59..92b5f628 100644 --- a/doc/site/variables.markdown +++ b/doc/site/variables.markdown @@ -31,7 +31,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](modules.html) system. All other variables are *local*. +to the [module](modularity.html) 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).