Navigation Menu

Skip to content

Commit

Permalink
perlrebackslash: Add missing paren to example
Browse files Browse the repository at this point in the history
  • Loading branch information
Karl Williamson committed Sep 25, 2011
1 parent c3e757a commit 86a74ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pod/perlrebackslash.pod
Expand Up @@ -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.
Expand Down

0 comments on commit 86a74ce

Please sign in to comment.