summaryrefslogtreecommitdiff
path: root/opcode.h
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2016-05-20 20:32:48 -0700
committerFather Chrysostomos <sprout@cpan.org>2016-05-20 22:17:34 -0700
commit118a40c4aa59af9330f4c37e86423a8b7c0d301c (patch)
treee23f67a4925fbd044799b9a9e67326c2224e1170 /opcode.h
parent5cb51e4d385f1a78e57460db8c624392985b7678 (diff)
downloadperl-118a40c4aa59af9330f4c37e86423a8b7c0d301c.tar.gz
Another op description correction: & -> &.
The string bitwise ops have dots in them, which should be included in the op descriptions.
Diffstat (limited to 'opcode.h')
-rw-r--r--opcode.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/opcode.h b/opcode.h
index 21d8340c41..0aaefb64a4 100644
--- a/opcode.h
+++ b/opcode.h
@@ -646,9 +646,9 @@ EXTCONST char* const PL_op_desc[] = {
"numeric bitwise and (&)",
"numeric bitwise xor (^)",
"numeric bitwise or (|)",
- "string bitwise and (&)",
- "string bitwise xor (^)",
- "string bitwise or (|)",
+ "string bitwise and (&.)",
+ "string bitwise xor (^.)",
+ "string bitwise or (|.)",
"negation (-)",
"integer negation (-)",
"not",