about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-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
800 7509' href='/akkartik/mu/commit/html/baremetal/502manhattan-line.mu.html?h=hlt&id=f6fd7e1be0780b5b6dee042bef1c4f0264069787'>f6fd7e1b ^
78357b88 ^
ec32c11d ^
78357b88 ^
f6fd7e1b ^
dc5a0acf ^

f6fd7e1b ^

372367f5 ^
f6fd7e1b ^
f6fd7e1b ^
78357b88 ^
372367f5 ^
f6fd7e1b ^


78357b88 ^
f6fd7e1b ^




























3350c34a ^
f6fd7e1b ^
4254408a ^




f6fd7e1b ^

4254408a ^
372367f5 ^
f6fd7e1b ^


4254408a ^
3350c34a ^
f6fd7e1b ^



4254408a ^
372367f5 ^
f6fd7e1b ^


4254408a ^
3350c34a ^
f6fd7e1b ^






1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88