diff options
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) |