about summary refs log tree commit diff stats
path: root/factorial.mu
diff options
context:
space:
mode:
Diffstat (limited to 'factorial.mu')
-rw-r--r--factorial.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/factorial.mu b/factorial.mu
index 8a261207..cf2284b2 100644
--- a/factorial.mu
+++ b/factorial.mu
@@ -9,7 +9,7 @@ def main [
 
 def factorial n:num -> result:num [
   local-scope
-  load-ingredients
+  load-inputs
   {
     # if n=0 return 1
     zero?:bool <- equal n, 0