summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Williamson <khw@khw-desktop.(none)>2010-03-28 12:16:35 -0600
committerJesse Vincent <jesse@bestpractical.com>2010-03-28 23:38:00 -0400
commit76f2ab4055f543a5188913c04802ca94e2b0fc1e (patch)
tree5c3873cd2fa4a977350a1b2889d472b32e3540b1
parent69a90d4d7c4b759ff7c64622a880d316d9be76cb (diff)
downloadperl-76f2ab4055f543a5188913c04802ca94e2b0fc1e.tar.gz
Slight edits
double word, make table fit in 80 column terminal
-rw-r--r--pod/perlre.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlre.pod b/pod/perlre.pod
index 12a111903e..48ca403f83 100644
--- a/pod/perlre.pod
+++ b/pod/perlre.pod
@@ -287,7 +287,7 @@ X<\g> X<\k> X<\K> X<backreference>
\R Linebreak
See L<perlrecharclass/Backslashed sequences> for details on
-on C<\w>, C<\W>, C<\s>, C<\S>, C<\d>, C<\D>, C<\p>, C<\P>, C<\N>, C<\v>, C<\V>,
+C<\w>, C<\W>, C<\s>, C<\S>, C<\d>, C<\D>, C<\p>, C<\P>, C<\N>, C<\v>, C<\V>,
C<\h>, and C<\H>.
See L<perlrebackslash/Misc> for details on C<\R> and C<\X>.
@@ -322,7 +322,7 @@ The following Posix-style character classes are available:
[[:lower:]] Any lowercase character.
[[:print:]] Any printable character, including a space.
[[:punct:]] Any graphical character excluding "word" characters.
- [[:space:]] Any whitespace character. "\s" plus the vertical tab ("\cK").
+ [[:space:]] Any whitespace character. "\s" plus vertical tab ("\cK").
[[:upper:]] Any uppercase character.
[[:word:]] A Perl extension, equivalent to "\w".
[[:xdigit:]] Any hexadecimal digit.