From 556eeac86eb521b45611eb55475b440aaaccff62 Mon Sep 17 00:00:00 2001 From: Chayim Refael Friedman Date: Thu, 26 Nov 2020 08:49:52 +0200 Subject: [PATCH] Fix broken link (#799) The Variables guide linked to `/modules.html`, but the page talking about modules is `/modularity.html` --- doc/site/variables.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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).