From a2c3388e496fa097a4d63493b057bf6d81717f47 Mon Sep 17 00:00:00 2001 From: Dale Weiler Date: Tue, 18 Jun 2013 07:31:09 +0000 Subject: [PATCH] Fix some comments --- stat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.39.2