From: Steve Peters Date: Sat, 17 Dec 2005 15:41:38 +0000 (+0000) Subject: Fix a typo and add some clarification to change #26387. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=06705523e0517b0027174c49916c620f6946316f;p=p5sagit%2Fp5-mst-13.2.git Fix a typo and add some clarification to change #26387. p4raw-link: @26387 on //depot/perl: 8705167b57c0f17d383e9e8ced641c8a486046b2 p4raw-id: //depot/perl@26388 --- diff --git a/pod/perlop.pod b/pod/perlop.pod index 6afe473..84cd866 100644 --- a/pod/perlop.pod +++ b/pod/perlop.pod @@ -200,10 +200,10 @@ 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 -bareword is equivalent to the string "-bareword". If, however, the string begins with a -non-alphabetic characters, Perl will attempt to convert the string to a numeric -and the arithmetic negation is performed. If the string cannot be cleanly -converted to a numeric, Perl will give the warning B. +non-alphabetic character (exluding "+" or "-"), Perl will attempt to convert +the string to a numeric and the arithmetic negation is performed. If the +string cannot be cleanly converted to a numeric, Perl will give the warning +B. X<-> X Unary "~" performs bitwise negation, i.e., 1's complement. For