From: Ilya Zakharevich Date: Thu, 10 Oct 1996 02:30:38 +0000 (-0400) Subject: perl 5.003_07: pod/perlop.pod X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5ba421f60ae90722acb8b7c904ef5f1a0a74023c;p=p5sagit%2Fp5-mst-13.2.git perl 5.003_07: pod/perlop.pod Date: Wed, 9 Oct 1996 22:30:38 -0400 (EDT) From: Ilya Zakharevich Crossrefs corrected. --- diff --git a/pod/perlop.pod b/pod/perlop.pod index 6217418..4752148 100644 --- a/pod/perlop.pod +++ b/pod/perlop.pod @@ -149,7 +149,7 @@ Unary "~" performs bitwise negation, i.e. 1's complement. Unary "+" has no effect whatsoever, even on strings. It is useful syntactically for separating a function name from a parenthesized expression that would otherwise be interpreted as the complete list of function -arguments. (See examples above under L.) +arguments. (See examples above under L.) Unary "\" creates a reference to whatever follows it. See L. Do not confuse this behavior with the behavior of backslash within a @@ -240,7 +240,7 @@ but, because * is higher precedence than ||: rand (10) * 20; # (rand 10) * 20 rand +(10) * 20; # rand (10 * 20) -See also L<"List Operators">. +See also L<"Terms and List Operators (Leftward)">. =head2 Relational Operators @@ -491,7 +491,7 @@ operators without the need for extra parentheses: open HANDLE, "filename" or die "Can't open: $!\n"; -See also discussion of list operators in L. +See also discussion of list operators in L. =head2 Logical Not