This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perlop.pod: Fix typo that yields wrong info
authorKarl Williamson <public@khwilliamson.com>
Fri, 5 Apr 2013 18:37:56 +0000 (12:37 -0600)
committerKarl Williamson <public@khwilliamson.com>
Fri, 5 Apr 2013 19:17:01 +0000 (13:17 -0600)
pod/perlop.pod

index 4ec0539..7db132c 100644 (file)
@@ -1408,7 +1408,7 @@ table:
    \c?      chr(127)
 
 In other words, it's the character whose code point has had 64 xor'd with
-its uppercase.  C<\c?> is DELETE because C<ord("@") ^ 64> is 127, and
+its uppercase.  C<\c?> is DELETE because C<ord("?") ^ 64> is 127, and
 C<\c@> is NULL because the ord of "@" is 64, so xor'ing 64 itself produces 0.
 
 Also, C<\c\I<X>> yields C< chr(28) . "I<X>"> for any I<X>, but cannot come at the