summaryrefslogtreecommitdiff
path: root/pod/perlre.pod
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-10-19 10:44:04 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2007-10-19 10:44:04 +0000
commitae5648b32772899e1475573621f75d7cfcf40dcc (patch)
tree265d04ee9b66291a897f16e8188bd35cec45647d /pod/perlre.pod
parenteb3fb7ac6cc625421e26f350ef8ef7f1095e11ad (diff)
downloadperl-ae5648b32772899e1475573621f75d7cfcf40dcc.tar.gz
POD nits
p4raw-id: //depot/perl@32145
Diffstat (limited to 'pod/perlre.pod')
-rw-r--r--pod/perlre.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlre.pod b/pod/perlre.pod
index 8bd517e2e4..1e4343431d 100644
--- a/pod/perlre.pod
+++ b/pod/perlre.pod
@@ -862,7 +862,7 @@ its Unicode extension (see L<utf8>),
though it isn't extended by the locale (see L<perllocale>).
B<NOTE:> In order to make things easier for programmers with experience
-with the Python or PCRE regex engines, the pattern C<< (?P<NAME>pattern) >>
+with the Python or PCRE regex engines, the pattern C<< (?PE<lt>NAMEE<gt>pattern) >>
may be used instead of C<< (?<NAME>pattern) >>; however this form does not
support the use of single quotes as a delimiter for the name.
@@ -2111,7 +2111,7 @@ Perl specific syntax, the following are legal in Perl 5.10:
=over 4
-=item C<< (?P<NAME>pattern) >>
+=item C<< (?PE<lt>NAMEE<gt>pattern) >>
Define a named capture buffer. Equivalent to C<< (?<NAME>pattern) >>.