From 0c74ad3cf1347809488837db61847fc518eb53ad Mon Sep 17 00:00:00 2001 From: Olivier Chafik Date: Wed, 24 Apr 2024 14:24:36 +0100 Subject: [PATCH] grammar: nit numbering in comment --- common/grammar-parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/grammar-parser.cpp b/common/grammar-parser.cpp index 90ce61d2b..207a37c8a 100644 --- a/common/grammar-parser.cpp +++ b/common/grammar-parser.cpp @@ -163,7 +163,7 @@ namespace grammar_parser { // the following rewrite rules: // S{m,n} --> S S S (m times) S'(n-m) // S'(x) ::= S S'(x-1) | - // (... x definitions of these S' rules ...) + // (... n-m definitions of these S' rules ...) // S'(1) ::= S | // S{m,} --> S S S (m times) S' // S' ::= S S' |