From ddb02427d80e68a7d15c3946d7372eaf21f3f506 Mon Sep 17 00:00:00 2001 From: "A. Jiang" Date: Fri, 24 Apr 2026 13:39:58 +0800 Subject: [PATCH] [re.tokiter.general] Fix incorrect `suffix.match` The type of `suffix` is a `sub_match` specialization, so the intended expression is probably `suffix.matched`. --- source/text.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/text.tex b/source/text.tex index 550ba12742..8f6b307f31 100644 --- a/source/text.tex +++ b/source/text.tex @@ -12651,7 +12651,7 @@ that points to a final sequence of characters at the end of the target sequence. In a suffix iterator the member \tcode{result} holds a pointer to the data -member \tcode{suffix}, the value of the member \tcode{suffix.match} +member \tcode{suffix}, the value of the member \tcode{suffix.matched} is \tcode{true}, \tcode{suffix.first} points to the beginning of the final sequence, and \tcode{suffix.second} points to the end of the final sequence.