diff options
author | Karl Williamson <khw@cpan.org> | 2020-08-15 19:59:43 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2020-08-31 18:15:43 -0600 |
commit | eb992c6fe3eb695f0f4836b9844ec01616381441 (patch) | |
tree | 9bc6fd08e285f91eac42e8b7bdc66ae5640ffb65 /pod/perlre.pod | |
parent | 2de859ce01e2f9e2245611a869f4d041bb48d2ca (diff) | |
download | perl-eb992c6fe3eb695f0f4836b9844ec01616381441.tar.gz |
Change some link pod for better rendering
C<L</foo>> renders better in places than L</C<foo>>
Diffstat (limited to 'pod/perlre.pod')
-rw-r--r-- | pod/perlre.pod | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/perlre.pod b/pod/perlre.pod index f49fd353ba..bc475ec27a 100644 --- a/pod/perlre.pod +++ b/pod/perlre.pod @@ -296,7 +296,7 @@ string as a multi-line buffer, such that the C<"^"> will match after any newline within the string (except if the newline is the last character in the string), and C<"$"> will match before any newline. At the cost of a little more overhead, you can do this by using the -L</C<E<sol>m>> modifier on the pattern match operator. (Older programs +C<L</E<sol>m>> modifier on the pattern match operator. (Older programs did this by setting C<$*>, but this option was removed in perl 5.10.) X<^> X<$> X</m> @@ -710,7 +710,7 @@ the pattern uses a Unicode break (C<\b{...}> or C<\B{...}>); or =item 7 -the pattern uses L</C<(?[ ])>> +the pattern uses C<L</(?[ ])>> =item 8 @@ -926,7 +926,7 @@ string" problem can be most efficiently performed when written as: as we know that if the final quote does not match, backtracking will not help. See the independent subexpression -L</C<< (?>I<pattern>) >>> for more details; +C<L</(?E<gt>I<pattern>)>> for more details; possessive quantifiers are just syntactic sugar for that construct. For instance the above example could also be written as follows: @@ -2575,7 +2575,7 @@ you can write either of these: (*atomic_script_run:pattern) (*asr:pattern) -(See L</C<(?E<gt>I<pattern>)>>.) +(See C<L</(?E<gt>I<pattern>)>>.) In Taiwan, Japan, and Korea, it is common for text to have a mixture of characters from their native scripts and base Chinese. Perl follows |