about summary refs log tree commit diff stats
path: root/055shape_shifting_container.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-11-07 09:10:48 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-11-07 09:10:48 -0800
commit1211a3ab30eb5cfbf1cb5b910eefb8d64dcb2107 (patch)
tree5d655f51604d85c8568e19c05dd129ad953c6511 /055shape_shifting_container.cc
parent133a4614365bbcc74602284beedc7b274fcf3e24 (diff)
downloadmu-1211a3ab30eb5cfbf1cb5b910eefb8d64dcb2107.tar.gz
3643
Standardize on calling literate waypoints "Special-cases" rather than
"Cases". Invariably there's a default path already present.
Diffstat (limited to '055shape_shifting_container.cc')
-rw-r--r--055shape_shifting_container.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/055shape_shifting_container.cc b/055shape_shifting_container.cc
index 5d70238c..707ac125 100644
--- a/055shape_shifting_container.cc
+++ b/055shape_shifting_container.cc
@@ -490,7 +490,7 @@ def main [
 //: offsets containing addresses for containers and exclusive containers --
 //: that we need to teach about type ingredients.
 
-:(before "End compute_container_sizes Non-atom Cases")
+:(before "End compute_container_sizes Non-atom Special-cases")
 const type_tree* root = root_type(type);
 type_info& info = get(Type, root->value);
 if (info.kind == CONTAINER) {
@@ -550,7 +550,7 @@ void test_container_sizes_recursive_shape_shifting_container() {
   CHECK_EQ(r2.metadata.size, 2);
 }
 
-:(before "End compute_container_address_offsets Non-atom Cases")
+:(before "End compute_container_address_offsets Non-atom Special-cases")
 const type_tree* root = root_type(type);
 type_info& info = get(Type, root->value);
 if (info.kind == CONTAINER) {