diff options
author | Father Chrysostomos <sprout@cpan.org> | 2014-12-27 12:40:55 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2014-12-27 12:40:55 -0800 |
commit | 0b55efd76dc4f6ffbdef0307f4f1cb24f1c0c9f7 (patch) | |
tree | 5d10b9cace883f9ef0a15640ed50cbc2409492a0 | |
parent | f0e5c859d36afe5a36325793f8c14f71229c5ba4 (diff) | |
download | perl-0b55efd76dc4f6ffbdef0307f4f1cb24f1c0c9f7.tar.gz |
perlop: Mention ~ among ops that vary by type
-rw-r--r-- | pod/perlop.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod index 67b3fb575c..dc6d2cfdc1 100644 --- a/pod/perlop.pod +++ b/pod/perlop.pod @@ -18,7 +18,7 @@ two numbers for equality, and C<$x eq $y> compares two strings. There are a few exceptions though: C<x> can be either string repetition or list repetition, depending on the type of the left -operand, and C<&>, C<|> and C<^> can be either string or numeric bit +operand, and C<&>, C<|>, C<^> and C<~> can be either string or numeric bit operations. =head2 Operator Precedence and Associativity |