diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2004-09-23 07:30:16 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2004-09-23 07:30:16 +0000 |
commit | bff5667cab927076651176299f898dee445d6b01 (patch) | |
tree | 92c2376a15fcd17c33d8b0c9e85d1ea21453b9d1 /pod/perlop.pod | |
parent | df98f9840e6fe334c33012e022f10cdcd0547d43 (diff) | |
download | perl-bff5667cab927076651176299f898dee445d6b01.tar.gz |
Remove a couple of C<> to avoid confusing double quotes in text
rendering. [perl #31678]
p4raw-id: //depot/perl@23333
Diffstat (limited to 'pod/perlop.pod')
-rw-r--r-- | pod/perlop.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod index 6185c686e0..17cf9a7578 100644 --- a/pod/perlop.pod +++ b/pod/perlop.pod @@ -190,8 +190,8 @@ Unary "-" performs arithmetic negation if the operand is numeric. If the operand is an identifier, a string consisting of a minus sign concatenated with the identifier is returned. Otherwise, if the string starts with a plus or minus, a string starting with the opposite sign -is returned. One effect of these rules is that C<-bareword> is equivalent -to C<"-bareword">. +is returned. One effect of these rules is that -bareword is equivalent +to "-bareword". Unary "~" performs bitwise negation, i.e., 1's complement. For example, C<0666 & ~027> is 0640. (See also L<Integer Arithmetic> and |