about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-09-26 11:01:41 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-09-26 11:01:41 -0700
commit7cb80544ba62f45b0ec566112e63dbbbbea36b77 (patch)
treed976174a8154ee8ca767feebbdf48ab861a8b4ab
parentde75312f693b2eff90b4da48ba47fa13ee5585b4 (diff)
downloadmu-7cb80544ba62f45b0ec566112e63dbbbbea36b77.tar.gz
2207
-rw-r--r--001help.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/001help.cc b/001help.cc
index 3fb7b905..0f1e32aa 100644
--- a/001help.cc
+++ b/001help.cc
@@ -76,7 +76,7 @@ bool is_equal(char* s, const char* lit) {
 // Corollary: don't use the size() method on containers, since it returns an
 // unsigned and that'll cause warnings about mixing signed and unsigned,
 // yadda-yadda. Instead use this macro below to perform an unsafe cast to
-// signed. We'll just give up immediately if a container's every too large.
+// signed. We'll just give up immediately if a container's ever too large.
 :(before "End Includes")
 #define SIZE(X) (assert((X).size() < (1LL<<(sizeof(long long int)*8-2))), static_cast<long long int>((X).size()))
 //