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/perlre.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/perlre.pod')
-rw-r--r-- | pod/perlre.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlre.pod b/pod/perlre.pod index bc5e7c914d..bf319ba16c 100644 --- a/pod/perlre.pod +++ b/pod/perlre.pod @@ -1265,7 +1265,7 @@ Overloaded constants (see L<overload>) provide a simple way to extend the functionality of the RE engine. Suppose that we want to enable a new RE escape-sequence C<\Y|> which -matches at boundary between white-space characters and non-whitespace +matches at boundary between whitespace characters and non-whitespace characters. Note that C<(?=\S)(?<!\S)|(?!\S)(?<=\S)> matches exactly at these positions, so we want to have each C<\Y|> in the place of the more complicated version. We can create a module C<customre> to do |