8fc43c189188e49c5f5d2761e01fac0f28603e6f
kent
  Tue Mar 17 18:25:26 2015 -0700
Improving comment.

diff --git src/inc/htmlPage.h src/inc/htmlPage.h
index 735c8ea..b2238ae 100644
--- src/inc/htmlPage.h
+++ src/inc/htmlPage.h
@@ -35,31 +35,31 @@
     char *domain;		/* The set of web domains this applies to. */
     char *path;			/* Cookie applies below this path I guess. */
     char *expires;		/* Expiration date. */
     boolean secure;		/* Is it a secure cookie? */
     };
 
 struct htmlAttribute
 /* An html attribute - part of a set of name/values pairs in a tag. */
     {
     struct htmlAttribute *next;
     char *name;		/* Attribute name. */
     char *val;		/* Attribute value. */
     };
 
 struct htmlTag
-/* A html tag - includes attribute list and parent, but no text. */
+/* A html tag - includes attribute list and tag name parsed out, pointers to unparsed text. */
     {
     struct htmlTag *next;
     char *name;	/* Tag name. */
     struct htmlAttribute *attributes;  /* Attribute list. */
     char *start;  /* Start of this tag.  Not allocated here.*/
     char *end;	  /* End of tag (one past closing '>')  Not allocated here.*/
     };
 
 struct htmlFormVar
 /* A variable within an html form - from input, button, etc. */
     {
     struct htmlFormVar *next;	/* Next in list. */
     char *name;			/* Variable name.  Not allocated here.*/
     char *tagName;		/* Name of tag.  Not allocated here. */
     char *type;			/* Variable type. Not allocated here. */