]> granicus.if.org Git - re2c/commitdiff
Fixed typo in comment.
authorUlya Trofimovich <skvadrik@gmail.com>
Thu, 21 Aug 2014 10:48:33 +0000 (13:48 +0300)
committerUlya Trofimovich <skvadrik@gmail.com>
Thu, 21 Aug 2014 10:48:33 +0000 (13:48 +0300)
re2c/re.h

index a58745453797ec4f3d91054121732c02243dc372..599f7902120f246f25041802ad54730fc0397ce6 100644 (file)
--- 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. <c1, c2> "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.