regcomp.c: change comment wording, from TomC
authorKarl Williamson <public@khwilliamson.com>
Tue, 3 May 2011 22:40:29 +0000 (16:40 -0600)
committerKarl Williamson <public@khwilliamson.com>
Wed, 18 May 2011 17:15:07 +0000 (11:15 -0600)
regcomp.c

index 1094789..dcd9856 100644 (file)
--- a/regcomp.c
+++ b/regcomp.c
@@ -9611,9 +9611,9 @@ S_regclass(pTHX_ RExC_state_t *pRExC_state, U32 depth)
            ANYOF_FLAGS(ret) |= ANYOF_INVERT;
 
         /* We have decided to not allow multi-char folds in inverted character
-         * classes, due to the confusion that can happen, even with classes
-         * that are designed for a non-Unicode world:  You have the peculiar
-         * case that:
+        * classes, due to the confusion that can happen, especially with
+        * classes that are designed for a non-Unicode world:  You have the
+        * peculiar case that:
             "s s" =~ /^[^\xDF]+$/i => Y
             "ss"  =~ /^[^\xDF]+$/i => N
          *