From: Ulya Trofimovich Date: Thu, 21 Aug 2014 10:48:33 +0000 (+0300) Subject: Fixed typo in comment. X-Git-Tag: 0.13.7.5~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=90d8b2f4f5d6d732cfdd23a9bdefafa02a51a99a;p=re2c Fixed typo in comment. --- 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.