summaryrefslogtreecommitdiff
path: root/pod/perlsub.pod
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-07-10 21:28:29 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-07-10 21:28:29 +0000
commit6cc33c6d77abfd9993cee9ddfc4035317a22cfb4 (patch)
tree13446f1debc903e08167f17025114456b424b070 /pod/perlsub.pod
parent005a453cfb613e5ffe5868c1301958751100cbdf (diff)
downloadperl-6cc33c6d77abfd9993cee9ddfc4035317a22cfb4.tar.gz
misc tweaks to docs and qsortsv() warning
p4raw-id: //depot/perl@1405
Diffstat (limited to 'pod/perlsub.pod')
-rw-r--r--pod/perlsub.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlsub.pod b/pod/perlsub.pod
index 392323a288..2eebe1a051 100644
--- a/pod/perlsub.pod
+++ b/pod/perlsub.pod
@@ -252,7 +252,7 @@ this is used to name the parameters to a subroutine. Examples:
The "my" is simply a modifier on something you might assign to. So when
you do assign to the variables in its argument list, the "my" doesn't
-change whether those variables is viewed as a scalar or an array. So
+change whether those variables are viewed as a scalar or an array. So
my ($foo) = <STDIN>; # WRONG?
my @FOO = <STDIN>;