about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-01-02 19:04:15 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-01-02 19:04:15 -0800
commit0e465e41adfbf10c06f9782d145752e3e8b112cd (patch)
tree255225d7c9553d85f6dc14f7a4a800e7f4de4e46
parentd62cbbdcf25f9982ad387b69d48bb015ea3f1e25 (diff)
downloadmu-0e465e41adfbf10c06f9782d145752e3e8b112cd.tar.gz
500
-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 [