File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -84,9 +84,11 @@ except that they are implemented as direct core operators, and thus perform
84
84
faster, and do not produce an additional subroutine call stack frame for
85
85
invoking the code block.
86
86
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>
90
92
export tag. [L<GH #23104|https://github.com/Perl/perl5/issues/23104>]
91
93
92
94
The related experimental warning flags are consequently named
@@ -335,7 +337,7 @@ each containing one million "A"s:
335
337
C<my @scalars; push @scalars, ("A" x 1_000_000) for 0..9;>
336
338
337
339
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>.
339
341
340
342
Note that any code using this sort of constant to simulate memory leaks
341
343
(perhaps in test files) must now permute the string in order to trigger
You can’t perform that action at this time.
0 commit comments