about summary refs log tree commit diff stats
path: root/prototypes/tile/9.mu
diff options
context:
space:
mode:
Diffstat (limited to 'prototypes/tile/9.mu')
-rw-r--r--prototypes/tile/9.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/prototypes/tile/9.mu b/prototypes/tile/9.mu
index 298db795..e7289fc2 100644
--- a/prototypes/tile/9.mu
+++ b/prototypes/tile/9.mu
@@ -11,8 +11,8 @@
 
 # To run unit tests:
 #   $ ./a.elf test
-fn main args-on-stack: (addr array (addr array byte)) -> exit-status/ebx: int {
-  var args/eax: (addr array (addr array byte)) <- copy args-on-stack
+fn main args-on-stack: (addr array addr array byte) -> exit-status/ebx: int {
+  var args/eax: (addr array addr array byte) <- copy args-on-stack
   var tmp/ecx: int <- length args
   $main-body: {
     # if (len(args) > 1 && args[1] == "test") run-tests()