about summary refs log tree commit diff stats
path: root/mu.arc
diff options
context:
space:
mode:
Diffstat (limited to 'mu.arc')
-rw-r--r--mu.arc6
1 files changed, 3 insertions, 3 deletions
diff --git a/mu.arc b/mu.arc
index 8f59a317..3f7fddbf 100644
--- a/mu.arc
+++ b/mu.arc
@@ -1317,13 +1317,13 @@
 (def add-code (forms)
   (each (op . rest)  forms
     (case op
-      ; syntax: def <name> [ <instructions> ]
+      ; syntax: function <name> [ <instructions> ]
       ; don't apply our lightweight tools just yet
-      def!
+      function!
         (let (name (_make-br-fn body))  rest
           (assert (is 'make-br-fn _make-br-fn))
           (= function*.name body))
-      def
+      function
         (let (name (_make-br-fn body))  rest
           (assert (is 'make-br-fn _make-br-fn))
           (= function*.name (join body function*.name)))