diff options
author | Karl Williamson <khw@cpan.org> | 2020-04-20 15:23:08 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2020-08-08 22:21:50 -0600 |
commit | 25d7ef180d77b2719e28b8fd7b48e38c499a7856 (patch) | |
tree | b753113028fdee80b2bd8e65545da5bc9a59d923 | |
parent | 3f8c7c3e1e1dd5fb1dc93324752d3cfd9c343db7 (diff) | |
download | perl-25d7ef180d77b2719e28b8fd7b48e38c499a7856.tar.gz |
regexec.c: Clarify comment
-rw-r--r-- | regexec.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11081,7 +11081,7 @@ Perl_isSCRIPT_RUN(pTHX_ const U8 * s, const U8 * send, const bool utf8_target) * several scripts, and the intersection is not empty. However, if the * character is a decimal digit, it could still mean failure if it is * from the wrong sequence of 10. So, we need to look at if it's a - * digit. We've already handled the 10 decimal digits, and the next + * digit. We've already handled the 10 digits [0-9], and the next * lowest one is this one: */ if (cp < FIRST_NON_ASCII_DECIMAL_DIGIT) { continue; /* Not a digit; this character is part of the run */ |