about summary refs log tree commit diff stats
path: root/037recipe.cc
diff options
context:
space:
mode:
Diffstat (limited to '037recipe.cc')
-rw-r--r--037recipe.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/037recipe.cc b/037recipe.cc
index 41c688f5..e342f98f 100644
--- a/037recipe.cc
+++ b/037recipe.cc
@@ -4,7 +4,7 @@
 
 :(scenario call_literal_recipe)
 recipe main [
-  1:number <- call f:recipe, 34:literal
+  1:number <- call f:recipe, 34
 ]
 recipe f [
   2:number <- next-ingredient
@@ -15,7 +15,7 @@ recipe f [
 :(scenario call_variable)
 recipe main [
   1:recipe-ordinal <- copy f:recipe
-  2:number <- call 1:recipe-ordinal, 34:literal
+  2:number <- call 1:recipe-ordinal, 34
 ]
 recipe f [
   3:number <- next-ingredient