summaryrefslogtreecommitdiff
path: root/pod/perlrecharclass.pod
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2015-03-29 21:23:54 -0600
committerKarl Williamson <khw@cpan.org>2015-03-29 22:14:01 -0600
commita845303db8f4bb4f618588d3f8e0f4356427de94 (patch)
treeef46c2206bd3c483c53ecd4e76262f16354cf601 /pod/perlrecharclass.pod
parentbc1d97289b2d0ec6fdf82e6ea23e7ae8fd8e2ff5 (diff)
downloadperl-a845303db8f4bb4f618588d3f8e0f4356427de94.tar.gz
perlrecharclass: Fix typo
Diffstat (limited to 'pod/perlrecharclass.pod')
-rw-r--r--pod/perlrecharclass.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlrecharclass.pod b/pod/perlrecharclass.pod
index 20a439ac36..ce287710d2 100644
--- a/pod/perlrecharclass.pod
+++ b/pod/perlrecharclass.pod
@@ -478,7 +478,7 @@ Ranges> will be explained shortly.) Therefore,
'ss' =~ /\A[\0-\x{ff}]\z/ui # Doesn't match
'ss' =~ /\A[\0-\N{LATIN SMALL LETTER SHARP S}]\z/ui # No match
'ss' =~ /\A[\xDF-\xDF]\z/ui # Matches on ASCII platforms, since
- # \XDF is LATIN SMALL LETTER SHARP S,
+ # \xDF is LATIN SMALL LETTER SHARP S,
# and the range is just a single
# element