summaryrefslogtreecommitdiff
path: root/pod/perlsub.pod
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-04-24 19:01:24 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-04-24 19:01:24 +0000
commita2293a43268c593a8a95d38299057a646f0fb089 (patch)
tree515232728afb60307b625135e36ae5a964b30148 /pod/perlsub.pod
parent6f611a1a07288b915db6721d056da56a6d688631 (diff)
downloadperl-a2293a43268c593a8a95d38299057a646f0fb089.tar.gz
more pod nits (from Larry Virden)
p4raw-id: //depot/perl@5939
Diffstat (limited to 'pod/perlsub.pod')
-rw-r--r--pod/perlsub.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlsub.pod b/pod/perlsub.pod
index 46d1a2a2b0..f1b87923ef 100644
--- a/pod/perlsub.pod
+++ b/pod/perlsub.pod
@@ -154,7 +154,7 @@ of changing them in place:
}
Notice how this (unprototyped) function doesn't care whether it was
-passed real scalars or arrays. Perl sees all arugments as one big,
+passed real scalars or arrays. Perl sees all arguments as one big,
long, flat parameter list in C<@_>. This is one area where
Perl's simple argument-passing style shines. The C<upcase()>
function would work perfectly well without changing the C<upcase()>
@@ -1270,7 +1270,7 @@ see L<attributes>.
See L<perlref/"Function Templates"> for more about references and closures.
See L<perlxs> if you'd like to learn about calling C subroutines from Perl.
-See L<perlembed> if you'd like to learn about calling PErl subroutines from C.
+See L<perlembed> if you'd like to learn about calling Perl subroutines from C.
See L<perlmod> to learn about bundling up your functions in separate files.
See L<perlmodlib> to learn what library modules come standard on your system.
See L<perltoot> to learn how to make object method calls.