about summary refs log tree commit diff stats
path: root/Readme.md
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-03-19 20:50:00 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-03-19 20:50:00 -0700
commitad07fc7faf440b025f7d883664aebf281ea85852 (patch)
tree6b637f1385f20e6ab5fe0b705c6bb0b93ac7e281 /Readme.md
parent80b781ccf8c0b991725e0713ab936443bb3252cf (diff)
downloadmu-ad07fc7faf440b025f7d883664aebf281ea85852.tar.gz
958
Diffstat (limited to 'Readme.md')
-rw-r--r--Readme.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/Readme.md b/Readme.md
index b81460b5..a2021dcf 100644
--- a/Readme.md
+++ b/Readme.md
@@ -146,9 +146,9 @@ will be unique (other variables won't clobber it) and consistent (all mentions
 of the name will map to the same address inside a function).
 
 Things get more complicated when your functions call other functions. Mu
-doesn't preserve uniqueness of names across functions, so you need to organize
-your names into spaces. At the start of each function (like `factorial`
-above), set its *default space*:
+doesn't preserve uniqueness of addresses across functions, so you need to
+organize your names into spaces. At the start of each function (like
+`factorial` above), set its *default space*:
 
   ```lisp
     default-space:space-address <- new space:literal, 30:literal