projects
/
bison.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7629036
)
* src/symlist.h (symbol_list): Fix typos in comments.
author
Joel E. Denny
<jdenny@ces.clemson.edu>
Sat, 11 Nov 2006 07:35:15 +0000
(07:35 +0000)
committer
Joel E. Denny
<jdenny@ces.clemson.edu>
Sat, 11 Nov 2006 07:35:15 +0000
(07:35 +0000)
src/symlist.h
patch
|
blob
|
blame
|
history
diff --git
a/src/symlist.h
b/src/symlist.h
index 8bb95438c662604363aa2d996392f8a1a150621b..d08b158a62b9c6c4d3453c191a5088c633e54ab5 100644
(file)
--- a/
src/symlist.h
+++ b/
src/symlist.h
@@
-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;