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 [