Skip to content

Commit 27a0538

Browse files
committed
perlapi: Combine vnewSVpvf and newSVpvf entries
This makes it easier for readers to choose which is best for their needs.
1 parent d35097c commit 27a0538

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

sv.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10430,14 +10430,15 @@ Perl_newSVpvf_nocontext(const char *const pat, ...)
1043010430
/*
1043110431
=for apidoc newSVpvf
1043210432
=for apidoc_item newSVpvf_nocontext
10433+
=for apidoc_item vnewSVpvf
1043310434

1043410435
These each create a new SV and initialize it with the string formatted like
1043510436
C<sv_catpvf>.
1043610437

1043710438
__PLAIN_vs_NOCONTEXT_wording__(newSVpvf)
1043810439

10439-
=for apidoc vnewSVpvf
10440-
Like C<L</newSVpvf>> but the arguments are a C<va_list>.
10440+
The arguments to C<vnewSVpvf> are specified as a C<va_list>. The arguments to
10441+
the remaining forms are specified as a sprintf-style list of arguments.
1044110442

1044210443
=cut
1044310444
*/

0 commit comments

Comments
 (0)