From 72d33970ea94fe3382327160378d9bc042cb1d73 Mon Sep 17 00:00:00 2001 From: Father Chrysostomos Date: Sat, 28 Dec 2013 06:55:13 -0800 Subject: perlapi: Consistent spaces after dots plus some typo fixes. I probably changed some things in perlintern, too. --- perl.c | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'perl.c') diff --git a/perl.c b/perl.c index 827191520f..f0bfac1267 100644 --- a/perl.c +++ b/perl.c @@ -2442,7 +2442,7 @@ S_run_body(pTHX_ I32 oldscope) =for apidoc p||get_sv Returns the SV of the specified Perl scalar. C are passed to -C. If C is set and the +C. If C is set and the Perl variable does not exist then it will be created. If C is zero and the variable does not exist then NULL is returned. @@ -2469,7 +2469,7 @@ Perl_get_sv(pTHX_ const char *name, I32 flags) Returns the AV of the specified Perl global or package array with the given name (so it won't work on lexical variables). C are passed -to C. If C is set and the +to C. If C is set and the Perl variable does not exist then it will be created. If C is zero and the variable does not exist then NULL is returned. @@ -2498,7 +2498,7 @@ Perl_get_av(pTHX_ const char *name, I32 flags) =for apidoc p||get_hv Returns the HV of the specified Perl hash. C are passed to -C. If C is set and the +C. If C is set and the Perl variable does not exist then it will be created. If C is zero and the variable does not exist then NULL is returned. @@ -2525,7 +2525,7 @@ Perl_get_hv(pTHX_ const char *name, I32 flags) =for apidoc p||get_cvn_flags Returns the CV of the specified Perl subroutine. C are passed to -C. If C is set and the Perl subroutine does not +C. If C is set and the Perl subroutine does not exist then it will be declared (which has the same effect as saying C). If C is not set and the subroutine does not exist then NULL is returned. @@ -2574,7 +2574,8 @@ Perl_get_cv(pTHX_ const char *name, I32 flags) =for apidoc p||call_argv Performs a callback to the specified named and package-scoped Perl subroutine -with C (a NULL-terminated array of strings) as arguments. See L. +with C (a NULL-terminated array of strings) as arguments. See +L. Approximate Perl equivalent: C<&{"$sub_name"}(@$argv)>. @@ -2797,8 +2798,8 @@ Perl_call_sv(pTHX_ SV *sv, VOL I32 flags) /* =for apidoc p||eval_sv -Tells Perl to C the string in the SV. It supports the same flags -as C, with the obvious exception of G_EVAL. See L. +Tells Perl to C the string in the SV. It supports the same flags +as C, with the obvious exception of G_EVAL. See L. =cut */ -- cgit v1.2.1