summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2013-05-15 18:58:31 -0600
committerKarl Williamson <public@khwilliamson.com>2013-05-15 19:08:17 -0600
commit3d3677c1442f14c56b792e27aa1b059452544292 (patch)
treee6320f176d087b0424834c4a06a09fb6989fbcc4
parent9c34b3759b6ab18d8216eb99caa4f3e1e28b90ad (diff)
downloadperl-3d3677c1442f14c56b792e27aa1b059452544292.tar.gz
Fix typo in perldelta
Spotted by Zsbán Ambrus
-rw-r--r--pod/perldelta.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index d04acf3f7c..2ac7e5befe 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -3563,7 +3563,7 @@ some subtleties when regular expressions are matched against
above-Unicode code points. There is a warning generated to draw your
attention to this. However, this warning was being generated
inappropriately in some cases, such as when a program was being parsed.
-Non-Unicode matches such as C<\w> and C<[:word;]> should not generate the
+Non-Unicode matches such as C<\w> and C<[:word:]> should not generate the
warning, as their definitions don't limit them to apply to only Unicode
code points. Now the message is only generated when matching against
C<\p{}> and C<\P{}>. There remains a bug, [perl #114148], for the very