summaryrefslogtreecommitdiff
path: root/pod/perlop.pod
diff options
context:
space:
mode:
authorSteve Peters <steve@fisharerojo.org>2005-05-10 04:41:01 -0500
committerAbhijit Menon-Sen <ams@wiw.org>2005-05-10 14:41:08 +0000
commitd2a1eec3cd6825dde834f852934b2f286fab1f9f (patch)
treea4a383ce07512778707c665a8a92eeb3f1dbcc25 /pod/perlop.pod
parentab923da19db4ee1bc3a2e308f5fef9d92ee4928a (diff)
downloadperl-d2a1eec3cd6825dde834f852934b2f286fab1f9f.tar.gz
perlop.pod nit
Message-Id: <20050510144101.GA21362@mccoy.peters.homeunix.org> p4raw-id: //depot/perl@24437
Diffstat (limited to 'pod/perlop.pod')
-rw-r--r--pod/perlop.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod
index 98d39ef6a7..f4e9c291ae 100644
--- a/pod/perlop.pod
+++ b/pod/perlop.pod
@@ -191,7 +191,7 @@ 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 -bareword is equivalent
-to "-bareword".
+to the string "-bareword".
Unary "~" performs bitwise negation, i.e., 1's complement. For
example, C<0666 & ~027> is 0640. (See also L<Integer Arithmetic> and