summaryrefslogtreecommitdiff
path: root/regcomp.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2005-01-23 22:06:01 +0000
committerNicholas Clark <nick@ccl4.org>2005-01-23 22:06:01 +0000
commit8fdec51143ba8063c924c83e982d4e30db7fb7ae (patch)
tree4f9504a9f16fcf67424c551a0b3beefed608add0 /regcomp.c
parentaf6ca1d0181f472691c45f9f3b0e93e14d574fbb (diff)
downloadperl-8fdec51143ba8063c924c83e982d4e30db7fb7ae.tar.gz
Tidy up 2 comments
p4raw-id: //depot/perl@23868
Diffstat (limited to 'regcomp.c')
-rw-r--r--regcomp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/regcomp.c b/regcomp.c
index 01bb71a39a..e9532bfb87 100644
--- a/regcomp.c
+++ b/regcomp.c
@@ -3486,7 +3486,7 @@ S_regpposixcc(pTHX_ RExC_state_t *pRExC_state, I32 value)
= complement ? ANYOF_NLOWER : ANYOF_LOWER;
}
if (memEQ(posixcc, "uppe", 4)) {
- /* r */
+ /* r */
namedclass
= complement ? ANYOF_NUPPER : ANYOF_UPPER;
}
@@ -3498,7 +3498,7 @@ S_regpposixcc(pTHX_ RExC_state_t *pRExC_state, I32 value)
= complement ? ANYOF_NDIGIT : ANYOF_DIGIT;
}
if (memEQ(posixcc, "prin", 4)) {
- /* t */
+ /* t */
namedclass
= complement ? ANYOF_NPRINT : ANYOF_PRINT;
}