]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
fix comments
authorDale Weiler <killfieldengine@gmail.com>
Sun, 23 Dec 2012 07:19:49 +0000 (07:19 +0000)
committerDale Weiler <killfieldengine@gmail.com>
Sun, 23 Dec 2012 07:19:49 +0000 (07:19 +0000)
gmqcc.h

diff --git a/gmqcc.h b/gmqcc.h
index 22aa499322d1067a78f581be787a16f6610a8f97..358b03c8fb243d8515f42e0fdd50ea83102de66d 100644 (file)
--- a/gmqcc.h
+++ b/gmqcc.h
@@ -300,14 +300,16 @@ uint16_t util_crc16(uint16_t crc, const char *data, size_t len);
 
 /*
  * A flexible vector implementation: all vector pointers contain some
- * data baout themselfs exactly - sizeof(vector_t) behind the pointer
+ * data about themselfs exactly - sizeof(vector_t) behind the pointer
  * this data is represented in the structure below.  Doing this allows
- * use to use the array [] to access individual data from the vector
+ * us to use the array [] to access individual elements from the vector
  * opposed to using set/get methods.
  */     
 typedef struct {
     size_t  allocated;
     size_t  used;
+
+    /* can be extended now! whoot */
 } vector_t;
 
 /* hidden interface */