diff options
author | Andreas König <a.koenig@mind.de> | 2003-01-03 01:57:15 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-01-04 15:24:22 +0000 |
commit | cc46d5f2e4ebe9a55062264f659bd3099f00a045 (patch) | |
tree | db98fc824d23499d006aea62970022d68c880be5 /pod | |
parent | 13e421d8be5b735e60752a6865c5b13fd4e4d73d (diff) | |
download | perl-cc46d5f2e4ebe9a55062264f659bd3099f00a045.tar.gz |
Re: [PATCH] Tiny nits in perlre.pod
Message-ID: <m33cob14x0.fsf@k242.linux.bogus>
p4raw-id: //depot/perl@18438
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlre.pod | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/perlre.pod b/pod/perlre.pod index 85ce658791..17a94252cf 100644 --- a/pod/perlre.pod +++ b/pod/perlre.pod @@ -6,7 +6,7 @@ perlre - Perl regular expressions This page describes the syntax of regular expressions in Perl. -if you haven't used regular expressions before, a quick-start +If you haven't used regular expressions before, a quick-start introduction is available in L<perlrequick>, and a longer tutorial introduction is available in L<perlretut>. @@ -564,7 +564,7 @@ only for fixed-width look-behind. B<WARNING>: This extended regular expression feature is considered highly experimental, and may be changed or deleted without notice. -This zero-width assertion evaluate any embedded Perl code. It +This zero-width assertion evaluates any embedded Perl code. It always succeeds, and its C<code> is not interpolated. Currently, the rules to determine where the C<code> ends are somewhat convoluted. @@ -627,7 +627,7 @@ although it could raise an exception from an illegal pattern. If you turn on the C<use re 'eval'>, though, it is no longer secure, so you should only do so if you are also using taint checking. Better yet, use the carefully constrained evaluation within a Safe -module. See L<perlsec> for details about both these mechanisms. +compartment. See L<perlsec> for details about both these mechanisms. =item C<(??{ code })> |