about summary refs log tree commit diff stats
path: root/Readme.md
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-01-02 18:59:57 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-01-02 18:59:57 -0800
commitd62cbbdcf25f9982ad387b69d48bb015ea3f1e25 (patch)
tree1e95e0d1d991685694d757395385581dfa3a3717 /Readme.md
parent8f9ec2fb316da2aea9837c89bb4afe690d89ba5d (diff)
downloadmu-d62cbbdcf25f9982ad387b69d48bb015ea3f1e25.tar.gz
499
Diffstat (limited to 'Readme.md')
-rw-r--r--Readme.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Readme.md b/Readme.md
index 3f8f3698..506b20f1 100644
--- a/Readme.md
+++ b/Readme.md
@@ -71,7 +71,7 @@ As a sneak peek, here's how you compute factorial in mu:
 
 ```lisp
   function factorial [
-    ; create some space for the variables below
+    ; allocate local variables
     default-space:space-address <- new space:literal, 30:literal
     ; receive inputs in a queue
     n:integer <- next-input