diff options
author | Ilya Zakharevich <ilya@math.ohio-state.edu> | 1996-10-09 22:30:38 -0400 |
---|---|---|
committer | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1996-10-09 22:30:38 -0400 |
commit | 5ba421f60ae90722acb8b7c904ef5f1a0a74023c (patch) | |
tree | 3840fb28f44aa93550c6142523dd548293e5f0b4 | |
parent | bee4bbb53e3ef5159827a960585a59c74690e686 (diff) | |
download | perl-5ba421f60ae90722acb8b7c904ef5f1a0a74023c.tar.gz |
perl 5.003_07: pod/perlop.pod
Date: Wed, 9 Oct 1996 22:30:38 -0400 (EDT)
From: Ilya Zakharevich <ilya@math.ohio-state.edu>
Crossrefs corrected.
-rw-r--r-- | pod/perlop.pod | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod index 6217418df1..4752148dbe 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<List Operators>.) +arguments. (See examples above under L<Terms and List Operators (Leftward)>.) Unary "\" creates a reference to whatever follows it. See L<perlref>. 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<List Operators (Leftward)>. +See also discussion of list operators in L<Terms and List Operators (Leftward)>. =head2 Logical Not |