Skip to content

Commit 10396cf

Browse files
Fix podcheck errors related to perldelta
1 parent 7669c9c commit 10396cf

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

pod/perldelta.pod

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,11 @@ except that they are implemented as direct core operators, and thus perform
8484
faster, and do not produce an additional subroutine call stack frame for
8585
invoking the code block.
8686

87-
The feature flags enabling those keywords have been named L<keyword_any>
88-
and L<keyword_all> to avoid confusion with to the ability of the
89-
C<feature> module to refer to all of its features by using the C<:all>
87+
The feature flags enabling those keywords have been named
88+
L<C<keyword_any>|feature/"The 'keyword_any' feature">
89+
and L<C<keyword_all>|feature/"The 'keyword_all' feature">
90+
to avoid confusion with to the ability of the C<feature> module
91+
to refer to all of its features by using the C<:all>
9092
export tag. [L<GH #23104|https://github.com/Perl/perl5/issues/23104>]
9193

9294
The related experimental warning flags are consequently named
@@ -335,7 +337,7 @@ each containing one million "A"s:
335337
C<my @scalars; push @scalars, ("A" x 1_000_000) for 0..9;>
336338

337339
Now a single buffer is allocated and shared between a CONST OP and
338-
the ten scalar elements of L<@scalars>.
340+
the ten scalar elements of C<@scalars>.
339341

340342
Note that any code using this sort of constant to simulate memory leaks
341343
(perhaps in test files) must now permute the string in order to trigger

0 commit comments

Comments
 (0)