about summary refs log tree commit diff stats
path: root/020run.cc
diff options
context:
space:
mode:
Diffstat (limited to '020run.cc')
-rw-r--r--020run.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/020run.cc b/020run.cc
index 1c63c564..8469e4da 100644
--- a/020run.cc
+++ b/020run.cc
@@ -318,24 +318,24 @@ recipe main [
 
 :(scenario comma_without_space)
 recipe main [
-  1:number <- add 2,2
+  1:number, 2:number <- copy 2,2
 ]
-+mem: storing 4 in location 1
++mem: storing 2 in location 1
 
 :(scenario space_without_comma)
 recipe main [
-  1:number <- add 2 2
+  1:number, 2:number <- copy 2 2
 ]
-+mem: storing 4 in location 1
++mem: storing 2 in location 1
 
 :(scenario comma_before_space)
 recipe main [
-  1:number <- add 2, 2
+  1:number, 2:number <- copy 2, 2
 ]
-+mem: storing 4 in location 1
++mem: storing 2 in location 1
 
 :(scenario comma_after_space)
 recipe main [
-  1:number <- add 2 ,2
+  1:number, 2:number <- copy 2 ,2
 ]
-+mem: storing 4 in location 1
++mem: storing 2 in location 1