From fead28d9e38603a932619a6df2edf95a93377df3 Mon Sep 17 00:00:00 2001 From: Akim Demaille Date: Tue, 29 Oct 2019 08:59:18 +0100 Subject: [PATCH] style: glr.c: comment changes * data/skeletons/glr.c: here. --- data/skeletons/glr.c | 8 ++++---- 1 file 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;