about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--Readme.md2
-rw-r--r--mu.arc.t2
2 files changed, 2 insertions, 2 deletions
diff --git a/Readme.md b/Readme.md
index 506b20f1..368e6232 100644
--- a/Readme.md
+++ b/Readme.md
@@ -127,7 +127,7 @@ syntax above. We'll drop them when we build a real parser.)
 
 The name of a value is for humans, but what the computer needs to access it is
 its address. Mu maps names to addresses for you like in other languages, but
-in a more deconstructed, decentralized, programmable manner. This instruction:
+in a more transparent, lightweight, hackable manner. This instruction:
 
 ```lisp
   z:integer <- add x:integer, y:integer
diff --git a/mu.arc.t b/mu.arc.t
index b880ea7e..9d588c87 100644
--- a/mu.arc.t
+++ b/mu.arc.t
@@ -3047,7 +3047,7 @@
   '((function consumer [
       (default-space:space-address <- new space:literal 30:literal)
       (1:channel-address <- init-channel 3:literal)  ; create a channel
-      (fork producer:fn default-space:address)  ; pass it as a global to another routine
+      (fork producer:fn default-space:space-address)  ; pass it as a global to another routine
       (1:tagged-value/raw <- read 1:channel-address)  ; wait for input on channel
      ])
     (function producer [
' href='#n131'>131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214