summaryrefslogtreecommitdiff
path: root/sv.h
diff options
context:
space:
mode:
authordLux <dlux@spam.sch.bme.hu>2001-04-23 03:25:26 +0200
committerJarkko Hietaniemi <jhi@iki.fi>2001-04-23 12:53:25 +0000
commit679ac26e110ef97fbf30ce13479d7051699b4a34 (patch)
tree2a2bf9e9cb7b0a1b9e8e5ea27c8e2ae3edfc33c5 /sv.h
parentd0369dd15170efd8d6a93db21c003d0edd4bfdf4 (diff)
downloadperl-679ac26e110ef97fbf30ce13479d7051699b4a34.tar.gz
Fix for
Subject: [ID 20010423.001] perlapi documentation inconsistency (SvGROW) Message-Id: <E14rTEM-0000CB-00@dl.sch.bme.hu> (SvGROW really does return a char *.) p4raw-id: //depot/perl@9786
Diffstat (limited to 'sv.h')
-rw-r--r--sv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sv.h b/sv.h
index ab04b0529a..a896b626b7 100644
--- a/sv.h
+++ b/sv.h
@@ -1053,7 +1053,7 @@ more than once.
Calls a non-destructive version of C<sv_setsv> if dsv is not the same as
ssv. May evaluate arguments more than once.
-=for apidoc Am|void|SvGROW|SV* sv|STRLEN len
+=for apidoc Am|char *|SvGROW|SV* sv|STRLEN len
Expands the character buffer in the SV so that it has room for the
indicated number of bytes (remember to reserve space for an extra trailing
NUL character). Calls C<sv_grow> to perform the expansion if necessary.