about summary refs log tree commit diff stats
path: root/factorial.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-12-03 23:25:40 -0800
committerKartik K. Agaram <vc@akkartik.com>2017-12-03 23:25:40 -0800
commit4a48bedcd1d708a43d43dc6259a4e45c52ea3d00 (patch)
tree85c1b7310cca932797d727a3de8da96eb175d8da /factorial.mu
parentef7d834fdd826977cd8d43253052a7b8e1c5aa72 (diff)
downloadmu-4a48bedcd1d708a43d43dc6259a4e45c52ea3d00.tar.gz
4134 - 'input' = 'ingredient'
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