about summary refs log tree commit diff stats
path: root/030container.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-09-17 10:22:56 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-09-17 10:23:03 -0700
commit97cf12b19e2f6bd754027e25b768f6dad1c3d587 (patch)
tree8577ebfe1f019c02789dbb3982a7c23de30aaae4 /030container.cc
parentb8f11f750f2fa8848734c044a6eddf66a04dbaff (diff)
downloadmu-97cf12b19e2f6bd754027e25b768f6dad1c3d587.tar.gz
3383
Fix overzealous search-and-replace in commit 3380.
Diffstat (limited to '030container.cc')
-rw-r--r--030container.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/030container.cc b/030container.cc
index c54a4be5..4a6ad1d2 100644
--- a/030container.cc
+++ b/030container.cc
@@ -6,8 +6,8 @@ type_ordinal point = put(Type_ordinal, "point", Next_type_ordinal++);
 get_or_insert(Type, point);  // initialize
 get(Type, point).kind = CONTAINER;
 get(Type, point).name = "point";
-get(Type, point).elements.push_back(reagent("x:num"));
-get(Type, point).elements.push_back(reagent("y:num"));
+get(Type, point).elements.push_back(reagent("x:number"));
+get(Type, point).elements.push_back(reagent("y:number"));
 
 //: Containers can be copied around with a single instruction just like
 //: numbers, no matter how large they are.
@@ -40,7 +40,7 @@ get_or_insert(Type, point_number);  // initialize
 get(Type, point_number).kind = CONTAINER;
 get(Type, point_number).name = "point-number";
 get(Type, point_number).elements.push_back(reagent("xy:point"));
-get(Type, point_number).elements.push_back(reagent("z:num"));
+get(Type, point_number).elements.push_back(reagent("z:number"));
 
 :(scenario copy_handles_nested_container_elements)
 def main [