diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-01-17 20:06:44 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-01-17 20:12:53 -0800 |
commit | 48052fe507e137a3e91199e64287b68b65a87c87 (patch) | |
tree | d702fddcaadef7258c88919c3b175d1b041d1845 /pod/perlcall.pod | |
parent | 24cbb42aa5f0fe61f1f764c810425c41d37d89da (diff) | |
download | perl-48052fe507e137a3e91199e64287b68b65a87c87.tar.gz |
perlcall: More punctuation changes
Diffstat (limited to 'pod/perlcall.pod')
-rw-r--r-- | pod/perlcall.pod | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/perlcall.pod b/pod/perlcall.pod index 295d3b7380..b1ec9490e1 100644 --- a/pod/perlcall.pod +++ b/pod/perlcall.pod @@ -799,14 +799,14 @@ then the output will be Value 1 = 3 In this case the main point to note is that only the last item in the -list is returned from the subroutine, I<AddSubtract> actually made it back to +list is returned from the subroutine. I<AddSubtract> actually made it back to I<call_AddSubScalar>. =head2 Returning Data from Perl via the Parameter List -It is also possible to return values directly via the parameter list - -whether it is actually desirable to do it is another matter entirely. +It is also possible to return values directly via the parameter +list--whether it is actually desirable to do it is another matter entirely. The Perl subroutine, I<Inc>, below takes 2 parameters and increments each directly. |