summaryrefslogtreecommitdiff
path: root/pod/perlop.pod
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>1999-09-05 22:02:18 +0000
committerJarkko Hietaniemi <jhi@iki.fi>1999-09-05 22:02:18 +0000
commit982ce1809751a8e19a5bbe5feaae6f223efd3485 (patch)
tree57c474740e20dd7d20d9b5dbdced2a99435cae3f /pod/perlop.pod
parentd0ba1bd2be06981094763112f29fa147de3d9441 (diff)
downloadperl-982ce1809751a8e19a5bbe5feaae6f223efd3485.tar.gz
Undo #4055 (related to #4079).
p4raw-id: //depot/cfgperl@4080
Diffstat (limited to 'pod/perlop.pod')
-rw-r--r--pod/perlop.pod8
1 files changed, 2 insertions, 6 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod
index 2b5b789ea6..14ca6b5ec0 100644
--- a/pod/perlop.pod
+++ b/pod/perlop.pod
@@ -220,15 +220,11 @@ Binary "." concatenates two strings.
Binary "<<" returns the value of its left argument shifted left by the
number of bits specified by the right argument. Arguments should be
-integers. (See also L<Integer Arithmetic>.) Shifting more than the
-width of the available integer in bits (usually 32 or 64) produces
-undefined (machine dependent) results.
+integers. (See also L<Integer Arithmetic>.)
Binary ">>" returns the value of its left argument shifted right by
the number of bits specified by the right argument. Arguments should
-be integers. (See also L<Integer Arithmetic>.) Shifting more than the
-width of the available integer in bits (usually 32 or 64) produces
-undefined (machine dependent) results.
+be integers. (See also L<Integer Arithmetic>.)
=head2 Named Unary Operators