summaryrefslogtreecommitdiff
path: root/pod/perlrecharclass.pod
diff options
context:
space:
mode:
authorVincent Pit <perl@profvince.com>2009-05-14 09:05:36 +0200
committerVincent Pit <perl@profvince.com>2009-05-14 09:05:36 +0200
commitea8b8ad24d31f92547d2469708185eb6d4cf1a13 (patch)
tree9e971359e5513e4aa7a16fc4417d8cdef84a75ad /pod/perlrecharclass.pod
parent36f064bc37569629cfa8ffed15497f849ae8ccfa (diff)
downloadperl-ea8b8ad24d31f92547d2469708185eb6d4cf1a13.tar.gz
Remove remaining POD tags in verbatim paragraphs
Diffstat (limited to 'pod/perlrecharclass.pod')
-rw-r--r--pod/perlrecharclass.pod8
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/perlrecharclass.pod b/pod/perlrecharclass.pod
index c86a2c35f8..a626dd9bb9 100644
--- a/pod/perlrecharclass.pod
+++ b/pod/perlrecharclass.pod
@@ -387,16 +387,16 @@ Perl recognizes the following POSIX character classes:
alpha Any alphabetical character.
alnum Any alphanumerical character.
ascii Any ASCII character.
- blank A GNU extension, equal to a space or a horizontal tab (C<\t>).
+ blank A GNU extension, equal to a space or a horizontal tab ("\t").
cntrl Any control character.
- digit Any digit, equivalent to C<\d>.
+ digit Any digit, equivalent to "\d".
graph Any printable character, excluding a space.
lower Any lowercase character.
print Any printable character, including a space.
punct Any punctuation character.
- space Any white space character. C<\s> plus the vertical tab (C<\cK>).
+ space Any white space character. "\s" plus the vertical tab ("\cK").
upper Any uppercase character.
- word Any "word" character, equivalent to C<\w>.
+ word Any "word" character, equivalent to "\w".
xdigit Any hexadecimal digit, '0' - '9', 'a' - 'f', 'A' - 'F'.
The exact set of characters matched depends on whether the source string