From: Dale Weiler Date: Tue, 18 Jun 2013 07:31:09 +0000 (+0000) Subject: Fix some comments X-Git-Tag: v0.3.0~102 X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=commitdiff_plain;h=a2c3388e496fa097a4d63493b057bf6d81717f47;ds=sidebyside Fix some comments --- diff --git a/stat.c b/stat.c index 137b370..4cd82bc 100644 --- a/stat.c +++ b/stat.c @@ -290,7 +290,7 @@ typedef struct hash_node_t { * } * * The two u32s that form the key are the same value x (pulled from data) - * this premix stage will be perform the same results for both. Unrolled + * this premix stage will perform the same results for both values. Unrolled * this produces just: * x *= m; * x ^= x >> r; @@ -301,7 +301,7 @@ typedef struct hash_node_t { * h *= m; * h ^= x; * - * This appears to be fine, except what happens when m == 1, well x + * This appears to be fine, except what happens when m == 1? well x * cancels out entierly, leaving just: * x ^= x >> r; * h ^= x;