diff options
author | Offer Kaye <offer.kaye@gmail.com> | 2005-03-17 09:47:36 -0500 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2005-03-29 07:01:11 +0000 |
commit | 6b0ac556af9eedace4d32a9b51232914d1118023 (patch) | |
tree | a2811d49ea035c77bacb6f7a3e5d7e8edf16b01d /pod/perllocale.pod | |
parent | a212c8b5d0b264f0c7351db7e22b3b1b1178ca8b (diff) | |
download | perl-6b0ac556af9eedace4d32a9b51232914d1118023.tar.gz |
Make the spelling of whitespace (vs white-space and white space)
more consistent
Message-ID: <5694250503171147668e73c7@mail.gmail.com>
p4raw-id: //depot/perl@24090
Diffstat (limited to 'pod/perllocale.pod')
-rw-r--r-- | pod/perllocale.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perllocale.pod b/pod/perllocale.pod index e2ea04d9dc..3e36543f85 100644 --- a/pod/perllocale.pod +++ b/pod/perllocale.pod @@ -736,8 +736,8 @@ Scalar true/false result never tainted. Subpatterns, either delivered as a list-context result or as $1 etc. are tainted if C<use locale> is in effect, and the subpattern regular expression contains C<\w> (to match an alphanumeric character), C<\W> -(non-alphanumeric character), C<\s> (white-space character), or C<\S> -(non white-space character). The matched-pattern variable, $&, $` +(non-alphanumeric character), C<\s> (whitespace character), or C<\S> +(non whitespace character). The matched-pattern variable, $&, $` (pre-match), $' (post-match), and $+ (last match) are also tainted if C<use locale> is in effect and the regular expression contains C<\w>, C<\W>, C<\s>, or C<\S>. |