diff options
author | Dave Rolsky <autarch@urth.org> | 2011-09-26 14:18:42 -0500 |
---|---|---|
committer | Dave Rolsky <autarch@urth.org> | 2011-09-28 09:58:13 -0500 |
commit | 450a7a1bbac26c29f4d17e66c5c3387e73388838 (patch) | |
tree | 93e72e6bce26a66d1cbe1443d436f1d746661e77 /pod/perlvar.pod | |
parent | 1fa81471adb3ec0d9247f45f13cf70a6919962c0 (diff) | |
download | perl-450a7a1bbac26c29f4d17e66c5c3387e73388838.tar.gz |
Add missing C on </p> construct
Diffstat (limited to 'pod/perlvar.pod')
-rw-r--r-- | pod/perlvar.pod | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/perlvar.pod b/pod/perlvar.pod index e504e23f76..d17ce4389c 100644 --- a/pod/perlvar.pod +++ b/pod/perlvar.pod @@ -795,7 +795,7 @@ BLOCK). The use of this variable anywhere in a program imposes a considerable performance penalty on all regular expression matches. To avoid this penalty, you can extract the same substring by using L</@->. Starting -with Perl 5.10, you can use the </p> match flag and the C<${^MATCH}> +with Perl 5.10, you can use the C</p> match flag and the C<${^MATCH}> variable to do the same thing for particular match operations. This variable is read-only and dynamically-scoped. @@ -826,7 +826,7 @@ enclosed by the current BLOCK. The use of this variable anywhere in a program imposes a considerable performance penalty on all regular expression matches. To avoid this penalty, you can extract the same substring by using L</@->. Starting -with Perl 5.10, you can use the </p> match flag and the +with Perl 5.10, you can use the C</p> match flag and the C<${^PREMATCH}> variable to do the same thing for particular match operations. @@ -862,7 +862,7 @@ enclosed by the current BLOCK). Example: The use of this variable anywhere in a program imposes a considerable performance penalty on all regular expression matches. To avoid this penalty, you can extract the same substring by -using L</@->. Starting with Perl 5.10, you can use the </p> match flag +using L</@->. Starting with Perl 5.10, you can use the C</p> match flag and the C<${^POSTMATCH}> variable to do the same thing for particular match operations. |