summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES2
1 files changed, 1 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 342e848..3f46af4 100644
--- a/CHANGES
+++ b/CHANGES
@@ -133,7 +133,7 @@ Version 3.1.0a1 - March, 2023
BEGIN, END = Keyword.using_each("BEGIN END".split())
body_word = Word(alphas)
- expr = BEGIN + Group(body_word[:END]) + END
+ expr = BEGIN + Group(body_word[...:END]) + END
# equivalent to
# expr = BEGIN + Group(ZeroOrMore(body_word, stop_on=END)) + END