summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkim Demaille <akim.demaille@gmail.com>2019-10-29 08:59:18 +0100
committerAkim Demaille <akim.demaille@gmail.com>2019-10-29 08:59:18 +0100
commitfead28d9e38603a932619a6df2edf95a93377df3 (patch)
treef9f702cbedc326e74b4c7b5468886acb07a6052c
parent7e0b50c52439a8154cd6a85933e2acef8dae2452 (diff)
downloadbison-fead28d9e38603a932619a6df2edf95a93377df3.tar.gz
style: glr.c: comment changes
* data/skeletons/glr.c: here.
-rw-r--r--data/skeletons/glr.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/data/skeletons/glr.c b/data/skeletons/glr.c
index 64f56a62..39fb3091 100644
--- a/data/skeletons/glr.c
+++ b/data/skeletons/glr.c
@@ -623,16 +623,16 @@ yytnamerr (char *yyres, const char *yystr)
#endif /* !YYERROR_VERBOSE */
-/** State numbers, as in LALR(1) machine */
+/** State numbers. */
typedef int yyStateNum;
-/** Rule numbers, as in LALR(1) machine */
+/** Rule numbers. */
typedef int yyRuleNum;
-/** Grammar symbol */
+/** Grammar symbol. */
typedef int yySymbol;
-/** Item references, as in LALR(1) machine */
+/** Item references. */
typedef short yyItemNum;
typedef struct yyGLRState yyGLRState;