diff options
author | Dagfinn Ilmari Mannsåker <ilmari@ilmari.org> | 2018-01-16 15:55:38 +0000 |
---|---|---|
committer | Dagfinn Ilmari Mannsåker <ilmari@ilmari.org> | 2018-01-16 15:57:53 +0000 |
commit | fefd4795653c0e793b69cef2956faf7c7f9db578 (patch) | |
tree | 98f6baf66d72f3a9da145a4a6d16507112b88369 /pad.c | |
parent | 097ff42c3bba30230d3512b3de153c75cd2e43c9 (diff) | |
download | perl-fefd4795653c0e793b69cef2956faf7c7f9db578.tar.gz |
Fix broken POD markup in perlapi/Pad Data Structures
Diffstat (limited to 'pad.c')
-rw-r--r-- | pad.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -66,7 +66,7 @@ or resolved at compile time. These don't have names by which they can be looked up from Perl code at run time through eval"" the way C<my>/C<our> variables can be. Since they can't be looked up by "name" but only by their index allocated at compile time (which is usually -in C<PL_op->op_targ>), wasting a name SV for them doesn't make sense. +in C<< PL_op->op_targ >>), wasting a name SV for them doesn't make sense. The pad names in the PADNAMELIST have their PV holding the name of the variable. The C<COP_SEQ_RANGE_LOW> and C<_HIGH> fields form a range |