diff options
author | Steve Hay <steve.m.hay@googlemail.com> | 2012-08-13 14:05:15 +0100 |
---|---|---|
committer | Steve Hay <steve.m.hay@googlemail.com> | 2012-08-13 14:05:15 +0100 |
commit | 1473338e035721db5d270ac204d930eb53f0cbd6 (patch) | |
tree | 7903a580b2355615d27c4c67cb129c8e2a2050e1 /sv.h | |
parent | afae8808e2be45f9eb45f5551351755194ae1773 (diff) | |
download | perl-1473338e035721db5d270ac204d930eb53f0cbd6.tar.gz |
Insert missing words into SvPV_force* documentation
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |