diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-07-08 11:38:36 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-07-09 12:37:17 -0600 |
commit | fe57f3b7598666107c5e6e9c9ffd844da47ea527 (patch) | |
tree | 69870b06d4269ca46de3d51c69176ed413f03fef /pod/perlrecharclass.pod | |
parent | 001de1221d5719ff84596edb61dbfaf861df18bf (diff) | |
download | perl-fe57f3b7598666107c5e6e9c9ffd844da47ea527.tar.gz |
perlrecharclass: slight reword
Diffstat (limited to 'pod/perlrecharclass.pod')
-rw-r--r-- | pod/perlrecharclass.pod | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/perlrecharclass.pod b/pod/perlrecharclass.pod index f0a6190f57..1f3eb745f3 100644 --- a/pod/perlrecharclass.pod +++ b/pod/perlrecharclass.pod @@ -549,9 +549,9 @@ the caret as one of the characters to match, either escape the caret or else don't list it first. In inverted bracketed character classes, Perl ignores the Unicode rules -that normally say that a given character matches a sequence of multiple -characters under caseless C</i> matching, which otherwise could be -highly confusing: +that normally say that certain characters match a sequence of multiple +characters under caseless C</i> matching. Following those rules +can lead to highly confusing situations: "ss" =~ /^[^\xDF]+$/ui; # Matches! |