about summary refs log tree commit diff stats
path: root/026call.cc
diff options
context:
space:
mode:
Diffstat (limited to '026call.cc')
-rw-r--r--026call.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/026call.cc b/026call.cc
index afe0bc19..113e71bb 100644
--- a/026call.cc
+++ b/026call.cc
@@ -5,20 +5,20 @@ def main [
   f
 ]
 def f [
-  3:number <- add 2, 2
+  3:num <- add 2, 2
 ]
 +mem: storing 4 in location 3
 
 :(scenario return_on_fallthrough)
 def main [
   f
-  1:number <- copy 0
-  2:number <- copy 0
-  3:number <- copy 0
+  1:num <- copy 0
+  2:num <- copy 0
+  3:num <- copy 0
 ]
 def f [
-  4:number <- copy 0
-  5:number <- copy 0
+  4:num <- copy 0
+  5:num <- copy 0
 ]
 +run: f
 # running f
@@ -138,9 +138,9 @@ def main [
 :(scenario calling_undefined_recipe_handles_missing_result)
 % Hide_errors = true;
 def main [
-  x:number <- foo
+  x:num <- foo
 ]
-+error: main: undefined operation in 'x:number <- foo '
++error: main: undefined operation in 'x:num <- foo '
 
 //:: finally, we need to fix the termination conditions for the run loop