]> de.git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
Fix some comments
authorDale Weiler <killfieldengine@gmail.com>
Tue, 18 Jun 2013 07:31:09 +0000 (07:31 +0000)
committerDale Weiler <killfieldengine@gmail.com>
Tue, 18 Jun 2013 07:31:09 +0000 (07:31 +0000)
stat.c

diff --git a/stat.c b/stat.c
index 137b37010eeb68d92caedc1e1b818b934fbf44c9..4cd82bc7b46d4607001221c14d39f24e6249cd65 100644 (file)
--- 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;