about summary refs log tree commit diff stats
path: root/077hash.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-02-25 08:24:14 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-02-25 08:24:14 -0800
commit05331766a971ecd1c3df236af0b374ae039b1142 (patch)
treec9cbc809046feaa86762c43edc77f1067f44c8e8 /077hash.cc
parent5ed9bb135efb7e581eeb879b8af357d3b9baf6ea (diff)
downloadmu-05331766a971ecd1c3df236af0b374ae039b1142.tar.gz
2703
Diffstat (limited to '077hash.cc')
-rw-r--r--077hash.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/077hash.cc b/077hash.cc
index fc98fd3e..eb6879d1 100644
--- a/077hash.cc
+++ b/077hash.cc
@@ -120,7 +120,7 @@ size_t hash_mu_exclusive_container(size_t h, const reagent& r) {
   assert(r.type->value);
   long long int tag = get(Memory, r.value);
   reagent variant = variant_type(r, tag);
-  // todo: move this warning to container definition time
+  // todo: move this error to container definition time
   if (has_property(variant, "ignore-for-hash"))
     raise_error << get(Type, r.type->value).name << ": /ignore-for-hash won't work in exclusive containers\n" << end();
   variant.set_value(r.value + /*skip tag*/1);