In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/1473338e035721db5d270ac204d930eb53f0cbd6?hp=afae8808e2be45f9eb45f5551351755194ae1773>
- Log ----------------------------------------------------------------- commit 1473338e035721db5d270ac204d930eb53f0cbd6 Author: Steve Hay <[email protected]> Date: Mon Aug 13 14:05:15 2012 +0100 Insert missing words into SvPV_force* documentation ----------------------------------------------------------------------- Summary of changes: sv.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sv.h b/sv.h index 82eaa61..b69979f 100644 --- a/sv.h +++ b/sv.h @@ -1461,12 +1461,12 @@ attention to precisely which outputs are influenced by which inputs. /* =for apidoc Am|char*|SvPV_force|SV* sv|STRLEN len Like C<SvPV> but will force the SV into containing a string (C<SvPOK>), and -only a (C<SvPOK_only>), by hook or by crook. You want force if you are +only a string (C<SvPOK_only>), by hook or by crook. You want force if you are going to update the C<SvPVX> directly. Processes get magic. =for apidoc Am|char*|SvPV_force_nomg|SV* sv|STRLEN len Like C<SvPV> but will force the SV into containing a string (C<SvPOK>), and -only a (C<SvPOK_only>), by hook or by crook. You want force if you are +only a string (C<SvPOK_only>), by hook or by crook. You want force if you are going to update the C<SvPVX> directly. Doesn't process get magic. =for apidoc Am|char*|SvPV|SV* sv|STRLEN len -- Perl5 Master Repository
