about summary refs log tree commit diff stats
path: root/031merge.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 /031merge.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 '031merge.cc')
-rw-r--r--031merge.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/031merge.cc b/031merge.cc
index d89ce2b0..75dc466b 100644
--- a/031merge.cc
+++ b/031merge.cc
@@ -183,7 +183,7 @@ void check_merge_call(const vector<reagent>& ingredients, const reagent& product
         }
         break;
       }
-      // End check_merge_call Cases
+      // End check_merge_call Special-cases
       default: {
         if (!types_coercible(container, ingredients.at(ingredient_index))) {
           raise << maybe(caller.name) << "incorrect type of ingredient " << ingredient_index << " in '" << inst.original_string << "'\n" << end();