]> git.saurik.com Git - bison.git/commitdiff
* src/symlist.h (symbol_list): Fix typos in comments.
authorJoel E. Denny <jdenny@ces.clemson.edu>
Sat, 11 Nov 2006 07:35:15 +0000 (07:35 +0000)
committerJoel E. Denny <jdenny@ces.clemson.edu>
Sat, 11 Nov 2006 07:35:15 +0000 (07:35 +0000)
src/symlist.h

index 8bb95438c662604363aa2d996392f8a1a150621b..d08b158a62b9c6c4d3453c191a5088c633e54ab5 100644 (file)
@@ -38,9 +38,14 @@ typedef struct symbol_list
     SYMLIST_DEFAULT_TAGGED, SYMLIST_DEFAULT_TAGLESS
   } content_type;
   union {
-    /** The symbol or \c NULL iff <tt>node_type = SYMLIST_SYMBOL</tt>.  */
+    /**
+     * The symbol or \c NULL iff
+     * <tt>symbol_list::content_type = SYMLIST_SYMBOL</tt>.
+     */
     symbol *sym;
-    /** The semantic type iff <tt>node_type = SYMLIST_TYPE</tt>.  */
+    /**
+     * The semantic type iff <tt>symbol_list::content_type = SYMLIST_TYPE</tt>.
+     */
     uniqstr type_name;
   } content;
   location location;