about summary refs log tree commit diff stats
path: root/continuation5.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 /continuation5.mu
parentef7d834fdd826977cd8d43253052a7b8e1c5aa72 (diff)
downloadmu-4a48bedcd1d708a43d43dc6259a4e45c52ea3d00.tar.gz
4134 - 'input' = 'ingredient'
Diffstat (limited to 'continuation5.mu')
-rw-r--r--continuation5.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/continuation5.mu b/continuation5.mu
index 9f9b87cb..e3030149 100644
--- a/continuation5.mu
+++ b/continuation5.mu
@@ -1,5 +1,5 @@
 # Example program showing that a 'paused' continuation can be 'resumed' with
-# ingredients.
+# inputs.
 #
 # Print out a list of numbers, first adding 0 to the first, 1 to the second, 2
 # to the third, and so on.
@@ -33,7 +33,7 @@ def main [
 
 def create-yielder l:&:list:num -> n:num, done?:bool [
   local-scope
-  load-ingredients
+  load-inputs
   a:num <- copy 0
   {
     done? <- equal l, 0