This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Correct ‘bitiwse’ in two op descriptions
authorFather Chrysostomos <sprout@cpan.org>
Sat, 21 May 2016 03:24:50 +0000 (20:24 -0700)
committerFather Chrysostomos <sprout@cpan.org>
Sat, 21 May 2016 05:17:34 +0000 (22:17 -0700)
Oops!

opcode.h
regen/opcodes

index e4fc3ec..21d8340 100644 (file)
--- a/opcode.h
+++ b/opcode.h
@@ -643,10 +643,10 @@ EXTCONST char* const PL_op_desc[] = {
        "bitwise and (&)",
        "bitwise xor (^)",
        "bitwise or (|)",
-       "numeric bitiwse and (&)",
+       "numeric bitwise and (&)",
        "numeric bitwise xor (^)",
        "numeric bitwise or (|)",
-       "string bitiwse and (&)",
+       "string bitwise and (&)",
        "string bitwise xor (^)",
        "string bitwise or (|)",
        "negation (-)",
index 893deb0..d361927 100644 (file)
@@ -165,10 +165,10 @@ scmp              string comparison (cmp) ck_null         ifst2   S S
 bit_and                bitwise and (&)         ck_bitop        fst2    S S|
 bit_xor                bitwise xor (^)         ck_bitop        fst2    S S|
 bit_or         bitwise or (|)          ck_bitop        fst2    S S|
-nbit_and       numeric bitiwse and (&) ck_bitop        fsT2    S S|
+nbit_and       numeric bitwise and (&) ck_bitop        fsT2    S S|
 nbit_xor       numeric bitwise xor (^) ck_bitop        fsT2    S S|
 nbit_or                numeric bitwise or (|)  ck_bitop        fsT2    S S|
-sbit_and       string bitiwse and (&)  ck_bitop        fst2    S S|
+sbit_and       string bitwise and (&)  ck_bitop        fst2    S S|
 sbit_xor       string bitwise xor (^)  ck_bitop        fst2    S S|
 sbit_or                string bitwise or (|)   ck_bitop        fst2    S S|