summaryrefslogtreecommitdiff
path: root/sv.h
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2012-08-13 14:05:15 +0100
committerSteve Hay <steve.m.hay@googlemail.com>2012-08-13 14:05:15 +0100
commit1473338e035721db5d270ac204d930eb53f0cbd6 (patch)
tree7903a580b2355615d27c4c67cb129c8e2a2050e1 /sv.h
parentafae8808e2be45f9eb45f5551351755194ae1773 (diff)
downloadperl-1473338e035721db5d270ac204d930eb53f0cbd6.tar.gz
Insert missing words into SvPV_force* documentation
Diffstat (limited to 'sv.h')
-rw-r--r--sv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sv.h b/sv.h
index 82eaa61d3a..b69979f239 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