From d30241bc993a961b50b16dc867aed31b99202579 Mon Sep 17 00:00:00 2001 From: "jacob.wieland" Date: Wed, 11 Dec 2024 12:10:41 +0100 Subject: [PATCH] fix c/gherkin.berp --- c/gherkin.berp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/c/gherkin.berp b/c/gherkin.berp index a1f7ecda3..ed52faf3d 100644 --- a/c/gherkin.berp +++ b/c/gherkin.berp @@ -34,5 +34,5 @@ Tags! := #TagLine+ // we need to explicitly mention comment, to avoid merging it into the description line's #Other token // we also eat the leading empty lines, the tailing lines are not removed by the parser to avoid lookahead, this has to be done by the AST builder -DescriptionHelper := #Empty* Description? #Comment* -Description! := #Other+ +DescriptionHelper := #Empty* Description? +Description! := (#Other | #Comment)+