From ff9899e2e2dafe945e1dab83b47de039dbc658d8 Mon Sep 17 00:00:00 2001 From: ruby Date: Sat, 11 Jul 2020 13:20:47 -0700 Subject: [PATCH] tweak doc/site/modularity.markdown MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Thorbjørn Lindeijer --- doc/site/modularity.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/site/modularity.markdown b/doc/site/modularity.markdown index ad54bde8..ba054fc9 100644 --- a/doc/site/modularity.markdown +++ b/doc/site/modularity.markdown @@ -45,7 +45,7 @@ if (thirsty) { If you need to import a variable under a different name, you can use `import "..." for Name as OtherName`. This looks up the top-level variable `Name` in *that* module, but declares a variable called `OtherName` in *this* module -with it's value. +with its value.
 import "liquids" for Water //Water is now taken