[ID 20000602.005] [PATCH]5.6.0 (DOC) tiny change to perlsyn.pod
authorJohn Borwick <jhborwic@unity.ncsu.edu>
Fri, 2 Jun 2000 14:35:03 +0000 (10:35 -0400)
committerJarkko Hietaniemi <jhi@iki.fi>
Sat, 3 Jun 2000 14:41:30 +0000 (14:41 +0000)
Message-Id: <Pine.GSO.4.21.0006021420290.11432-100000@eos00du.eos.ncsu.edu>

p4raw-id: //depot/cfgperl@6197

pod/perlsyn.pod

index a65b4cd..6d820b6 100644 (file)
@@ -53,8 +53,8 @@ subroutine without defining it by saying C<sub name>, thus:
     sub myname;
     $me = myname $0            or die "can't get myname";
 
-Note that my() functions as a list operator, not as a unary operator; so
-be careful to use C<or> instead of C<||> in this case.  However, if
+Note that myname() functions as a list operator, not as a unary operator;
+so be careful to use C<or> instead of C<||> in this case.  However, if
 you were to declare the subroutine as C<sub myname ($)>, then
 C<myname> would function as a unary operator, so either C<or> or
 C<||> would work.