* src/symlist.h (symbol_list): Fix typos in comments.

This commit is contained in:
Joel E. Denny
2006-11-11 07:35:15 +00:00
parent 76290368d4
commit 40cb301cd8

View 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;