about summary refs log tree commit diff stats
path: root/mu-init.subx
diff options
context:
space:
mode:
Diffstat (limited to 'mu-init.subx')
-rw-r--r--mu-init.subx6
1 files changed, 3 insertions, 3 deletions
diff --git a/mu-init.subx b/mu-init.subx
index 0c5d0293..cec9808d 100644
--- a/mu-init.subx
+++ b/mu-init.subx
@@ -3,9 +3,9 @@
 # See translate_mu for how this file is used.
 #
 # Mu programs start at a function called 'main' with this signature:
-#   fn main args: (address array kernel-string) -> exit_status/ebx : int
+#   fn main args: (address array kernel-string) -> exit_status/ebx: int
 # If your program doesn't need commandline arguments you can drop it:
-#   fn main -> exit_status/ebx : int
+#   fn main -> exit_status/ebx: int
 #
 # Notice that the output must be in ebx, so that the exit() syscall can pick
 # it up.
@@ -15,7 +15,7 @@
 Entry:
     # we don't use ebp in Entry; just initialize it
     bd/copy-to-ebp 0/imm32
-    # var args/eax : (address array kernel-string)
+    # var args/eax: (address array kernel-string)
     89/<- %eax 4/r32/esp
     # initialize the heap
     (new-segment *Heap-size Heap)