about summary refs log tree commit diff stats
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/factorial.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/factorial.mu b/apps/factorial.mu
index 5cd8c510..dab0ca90 100644
--- a/apps/factorial.mu
+++ b/apps/factorial.mu
@@ -38,7 +38,7 @@ fn main args-on-stack: (addr array (addr array byte)) -> exit-status/ebx: int {
   # len = length(args)
   var len/ecx: int <- length args
   $main-body: {
-    # if (len <= 1) factorial(5)
+    # if (len <= 1) return factorial(5)
     compare len, 1
     {
       break-if->