summaryrefslogtreecommitdiff
path: root/pod/perlrebackslash.pod
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2011-09-25 10:42:30 -0600
committerKarl Williamson <public@khwilliamson.com>2011-09-25 14:18:09 -0600
commit86a74cedb7633aa8cea11833e16d6d92b42774f2 (patch)
treeb7c207750d91efa68166629b88dd4557585b6aea /pod/perlrebackslash.pod
parentc3e757a40c55876683be2b5748486a3b3d07157f (diff)
downloadperl-86a74cedb7633aa8cea11833e16d6d92b42774f2.tar.gz
perlrebackslash: Add missing paren to example
Diffstat (limited to 'pod/perlrebackslash.pod')
-rw-r--r--pod/perlrebackslash.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlrebackslash.pod b/pod/perlrebackslash.pod
index 8f2490d78e..0ce42b4515 100644
--- a/pod/perlrebackslash.pod
+++ b/pod/perlrebackslash.pod
@@ -603,7 +603,7 @@ linebreak sequence by Unicode. This includes all characters matched by
C<\v> (vertical whitespace), and the multi character sequence C<"\x0D\x0A">
(carriage return followed by a line feed, sometimes called the network
newline; it's the end of line sequence used in Microsoft text files opened
-in binary mode). C<\R> is equivalent to C<< (?>\x0D\x0A)|\v) >>. Since
+in binary mode). C<\R> is equivalent to C<< (?>\x0D\x0A|\v) >>. Since
C<\R> can match a sequence of more than one character, it cannot be put
inside a bracketed character class; C</[\R]/> is an error; use C<\v>
instead. C<\R> was introduced in perl 5.10.0.