summaryrefslogtreecommitdiff
path: root/pod/perlcall.pod
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2011-01-17 20:06:44 -0800
committerFather Chrysostomos <sprout@cpan.org>2011-01-17 20:12:53 -0800
commit48052fe507e137a3e91199e64287b68b65a87c87 (patch)
treed702fddcaadef7258c88919c3b175d1b041d1845 /pod/perlcall.pod
parent24cbb42aa5f0fe61f1f764c810425c41d37d89da (diff)
downloadperl-48052fe507e137a3e91199e64287b68b65a87c87.tar.gz
perlcall: More punctuation changes
Diffstat (limited to 'pod/perlcall.pod')
-rw-r--r--pod/perlcall.pod6
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.