diff options
author | Karl Williamson <khw@khw-desktop.(none)> | 2010-03-27 22:55:41 -0600 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2010-03-28 15:57:17 +0200 |
commit | 418e7b041a50a0f6a3f1a824f7b10ba435fb78b1 (patch) | |
tree | a375a5010f67576c68e18dee0e1f17b15268af4c /pod/perlreref.pod | |
parent | 58151fe4e3ed9d2e8ad9699d19d2b7d712cb1842 (diff) | |
download | perl-418e7b041a50a0f6a3f1a824f7b10ba435fb78b1.tar.gz |
Make whitespace a single word [perl #34462]
Diffstat (limited to 'pod/perlreref.pod')
-rw-r--r-- | pod/perlreref.pod | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/perlreref.pod b/pod/perlreref.pod index c6cbe752fe..94ac5dcef5 100644 --- a/pod/perlreref.pod +++ b/pod/perlreref.pod @@ -124,13 +124,13 @@ and L<perlunicode> for details. \W A non-word character \s A whitespace character \S A non-whitespace character - \h An horizontal white space - \H A non horizontal white space + \h An horizontal whitespace + \H A non horizontal whitespace \N A non newline (when not followed by '{NAME}'; experimental; not valid in a character class; equivalent to [^\n]; it's like '.' without /s modifier) - \v A vertical white space - \V A non vertical white space + \v A vertical whitespace + \V A non vertical whitespace \R A generic newline (?>\v|\x0D\x0A) \C Match a byte (with Unicode, '.' matches a character) |