From 86a74cedb7633aa8cea11833e16d6d92b42774f2 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Sun, 25 Sep 2011 10:42:30 -0600 Subject: perlrebackslash: Add missing paren to example --- pod/perlrebackslash.pod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 is an error; use C<\v> instead. C<\R> was introduced in perl 5.10.0. -- cgit v1.2.1