Fix a typo and add some clarification to change #26387.
Steve Peters [Sat, 17 Dec 2005 15:41:38 +0000 (15:41 +0000)]
p4raw-link: @26387 on //depot/perl: 8705167b57c0f17d383e9e8ced641c8a486046b2

p4raw-id: //depot/perl@26388

pod/perlop.pod

index 6afe473..84cd866 100644 (file)
@@ -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<Argument "the string"
-isn't numeric in negation (-) at ...>.  
+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<Argument "the string" isn't numeric in negation (-) at ...>.
 X<-> X<negation, arithmetic>
 
 Unary "~" performs bitwise negation, i.e., 1's complement.  For