From: Rafael Garcia-Suarez Date: Thu, 23 Sep 2004 07:30:16 +0000 (+0000) Subject: Remove a couple of C<> to avoid confusing double quotes in text X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=bff5667cab927076651176299f898dee445d6b01;p=p5sagit%2Fp5-mst-13.2.git Remove a couple of C<> to avoid confusing double quotes in text rendering. [perl #31678] p4raw-id: //depot/perl@23333 --- diff --git a/pod/perlop.pod b/pod/perlop.pod index 6185c68..17cf9a7 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 and