about summary refs log tree commit diff stats
path: root/042name.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 /042name.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 '042name.cc')
-rw-r--r--042name.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/042name.cc b/042name.cc
index 1fd559e8..6b6d2a74 100644
--- a/042name.cc
+++ b/042name.cc
@@ -104,7 +104,7 @@ bool is_disqualified(/*mutable*/ reagent& x, const instruction& inst, const stri
   }
   if (is_raw(x)) return true;
   if (is_literal(x)) return true;
-  // End is_disqualified Cases
+  // End is_disqualified Special-cases
   if (x.initialized) return true;
   return false;
 }
@@ -150,7 +150,7 @@ bool is_named_location(const reagent& x) {
 bool is_special_name(const string& s) {
   if (s == "_") return true;
   if (s == "0") return true;
-  // End is_special_name Cases
+  // End is_special_name Special-cases
   return false;
 }