From 90d8b2f4f5d6d732cfdd23a9bdefafa02a51a99a Mon Sep 17 00:00:00 2001 From: Ulya Trofimovich Date: Thu, 21 Aug 2014 13:48:33 +0300 Subject: [PATCH] Fixed typo in comment. --- re2c/re.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/re2c/re.h b/re2c/re.h index a5874545..599f7902 100644 --- a/re2c/re.h +++ b/re2c/re.h @@ -59,7 +59,7 @@ public: * 1) named definitions, e.g. digit = [0-9]; * 2) counted repetition, e.g. "a"{3}, "a"{3,}, "a"{3,5} * 3) multiple DFA's sharing the same regexp , e.g. "abc" { } - * 3) common suffixes, e.g. suffix [\x80-\xBF] in UTF-8 ranges + * 4) common suffixes, e.g. suffix [\x80-\xBF] in UTF-8 ranges * In cases 1-3, regexp must be recompiled each time it's reused. * In case 4, regexp should be compiled only once, and instructions * should be shared in order to reduce space. -- 2.40.0