diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-07-13 15:03:45 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-07-13 15:03:45 +0000 |
commit | e2cb52ee1eadebb8ce6e30389dbc092e45144039 (patch) | |
tree | cfcafe348d59f50fbd8317243dd6b1d60406af2a /pod/perlre.pod | |
parent | 72712bfd0a2dd252c7552f2dbf4117f91c5a7747 (diff) | |
download | perl-e2cb52ee1eadebb8ce6e30389dbc092e45144039.tar.gz |
More typo fixes in the regexp docs
p4raw-id: //depot/perl@31612
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 56df3eb486..ef2a66e3f6 100644 --- a/pod/perlre.pod +++ b/pod/perlre.pod @@ -296,7 +296,7 @@ in general. X<\w> X<\W> X<word> C<\R> will atomically match a linebreak, including the network line-ending -"\x0D\x0A". Specifically, X<\R> is exactly equivelent to +"\x0D\x0A". Specifically, X<\R> is exactly equivalent to (?>\x0D\x0A?|[\x0A-\x0C\x85\x{2028}\x{2029}]) |