about summary refs log tree commit diff stats
path: root/023boolean.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-09-30 02:01:59 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-09-30 02:01:59 -0700
commite236973be09620daec70d83f7a5846e8f6fff680 (patch)
tree0de608da6bbad2b019c548788af24607f535c1bd /023boolean.cc
parent4e49b29e63b0d369b81318ac822dc06ce06786b5 (diff)
downloadmu-e236973be09620daec70d83f7a5846e8f6fff680.tar.gz
2222
Diffstat (limited to '023boolean.cc')
-rw-r--r--023boolean.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/023boolean.cc b/023boolean.cc
index b0debe6b..e556f47c 100644
--- a/023boolean.cc
+++ b/023boolean.cc
@@ -4,7 +4,7 @@
 AND,
 :(before "End Primitive Recipe Numbers")
 Recipe_ordinal["and"] = AND;
-:(before "End Primitive Recipe Type Checks")
+:(before "End Primitive Recipe Checks")
 case AND: {
   for (long long int i = 0; i < SIZE(inst.ingredients); ++i) {
     if (!is_mu_scalar(inst.ingredients.at(i))) {
@@ -54,7 +54,7 @@ recipe main [
 OR,
 :(before "End Primitive Recipe Numbers")
 Recipe_ordinal["or"] = OR;
-:(before "End Primitive Recipe Type Checks")
+:(before "End Primitive Recipe Checks")
 case OR: {
   for (long long int i = 0; i < SIZE(inst.ingredients); ++i) {
     if (!is_mu_scalar(inst.ingredients.at(i))) {
@@ -104,7 +104,7 @@ recipe main [
 NOT,
 :(before "End Primitive Recipe Numbers")
 Recipe_ordinal["not"] = NOT;
-:(before "End Primitive Recipe Type Checks")
+:(before "End Primitive Recipe Checks")
 case NOT: {
   if (SIZE(inst.products) > SIZE(inst.ingredients)) {
     raise << Recipe[r].name << ": 'not' cannot have fewer ingredients than products in '" << inst.to_string() << "'\n" << end();