summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-04-20 15:23:08 -0600
committerKarl Williamson <khw@cpan.org>2020-08-08 22:21:50 -0600
commit25d7ef180d77b2719e28b8fd7b48e38c499a7856 (patch)
treeb753113028fdee80b2bd8e65545da5bc9a59d923
parent3f8c7c3e1e1dd5fb1dc93324752d3cfd9c343db7 (diff)
downloadperl-25d7ef180d77b2719e28b8fd7b48e38c499a7856.tar.gz
regexec.c: Clarify comment
-rw-r--r--regexec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/regexec.c b/regexec.c
index ace39add2a..d2169206d9 100644
--- a/regexec.c
+++ b/regexec.c
@@ -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 */