diff options
author | Anton Tagunov <tagunov@motor.ru> | 2002-03-08 08:26:59 +0300 |
---|---|---|
committer | Abhijit Menon-Sen <ams@wiw.org> | 2002-03-08 01:54:03 +0000 |
commit | 5b3218b92cfa804c1a1f7d5ced0e9d8875a210f9 (patch) | |
tree | d32bb80951563abff7fccb187a4b880b97685858 /pod/perlguts.pod | |
parent | 553e1bccd86c250b3dbeaa468c16f0244c6db836 (diff) | |
download | perl-5b3218b92cfa804c1a1f7d5ced0e9d8875a210f9.tar.gz |
[ID 20020307.010] [Patch docs] A _very_ small patch to correct a
minor typo in perlguts.pod
Message-Id: <4649821189.20020308052659@motor.ru>
p4raw-id: //depot/perl@15089
Diffstat (limited to 'pod/perlguts.pod')
-rw-r--r-- | pod/perlguts.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlguts.pod b/pod/perlguts.pod index 2b8faf007f..bfd11dec74 100644 --- a/pod/perlguts.pod +++ b/pod/perlguts.pod @@ -54,7 +54,7 @@ To change the value of an *already-existing* SV, there are seven routines: void sv_setpv(SV*, const char*); void sv_setpvn(SV*, const char*, int) void sv_setpvf(SV*, const char*, ...); - void sv_vsetpvfn(SV*, const char*, STRLEN, va_list *, SV **, I32, bool); + void sv_vsetpvfn(SV*, const char*, STRLEN, va_list *, SV **, I32, bool *); void sv_setsv(SV*, SV*); Notice that you can choose to specify the length of the string to be |