diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-12-30 16:04:57 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-12-30 20:30:44 -0800 |
commit | b3adf4c04b682aa1b048bc826d019a355ea7637d (patch) | |
tree | 9fa4390c188a30c56fa86ffbbb24728dfc7e5ff1 /sv.h | |
parent | 1eac0b12e4ee84abdae3ef68d4beacd0e626218b (diff) | |
download | perl-b3adf4c04b682aa1b048bc826d019a355ea7637d.tar.gz |
Fix bad reference in sv.h’s docs
SvPVx should be referring to SvPV as the faster version, not SvPVX.
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1417,7 +1417,7 @@ C<SvPVx> for a version which guarantees to evaluate sv only once. =for apidoc Am|char*|SvPVx|SV* sv|STRLEN len A version of C<SvPV> which guarantees to evaluate C<sv> only once. Only use this if C<sv> is an expression with side effects, otherwise use the -more efficient C<SvPVX>. +more efficient C<SvPV>. =for apidoc Am|char*|SvPV_nomg|SV* sv|STRLEN len Like C<SvPV> but doesn't process magic. |