diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-03-19 20:50:00 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-03-19 20:50:00 -0700 |
commit | ad07fc7faf440b025f7d883664aebf281ea85852 (patch) | |
tree | 6b637f1385f20e6ab5fe0b705c6bb0b93ac7e281 | |
parent | 80b781ccf8c0b991725e0713ab936443bb3252cf (diff) | |
download | mu-ad07fc7faf440b025f7d883664aebf281ea85852.tar.gz |
958
-rw-r--r-- | Readme.md | 6 |
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 |