summaryrefslogtreecommitdiff
path: root/op.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2004-02-27 13:13:43 +0000
committerNicholas Clark <nick@ccl4.org>2004-02-27 13:13:43 +0000
commitb5a930ec3bf87d0d126b3ddd1f5cc0587aae7f49 (patch)
treebad3daa697a5bc41ddcebcf56bee2024f2ba941a /op.c
parent18026298eff2588a08fb9adea03ddb6fd64c650b (diff)
downloadperl-b5a930ec3bf87d0d126b3ddd1f5cc0587aae7f49.tar.gz
Correct thinko in comment.
p4raw-id: //depot/perl@22397
Diffstat (limited to 'op.c')
-rw-r--r--op.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/op.c b/op.c
index 4273e65dcd..0c688da655 100644
--- a/op.c
+++ b/op.c
@@ -678,7 +678,7 @@ Perl_scalarvoid(pTHX_ OP *o)
if (ckWARN(WARN_VOID)) {
useless = "a constant";
/* don't warn on optimised away booleans, eg
- * use constant F, 5; Foo || print; */
+ * use constant Foo, 5; Foo || print; */
if (cSVOPo->op_private & OPpCONST_SHORTCIRCUIT)
useless = 0;
/* the constants 0 and 1 are permitted as they are