summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorIain Spoon Truskett <unknown>2003-10-12 09:01:25 +0000
committerAbhijit Menon-Sen <ams@wiw.org>2003-10-13 08:41:17 +0000
commit5438961c527f841385f3ab1b8503235cb786f085 (patch)
treead7bbbe62038f772535c6a80aa681c6296892346 /lib
parent81eaca17788a9221a27310f8de41fa6679a5a1ee (diff)
downloadperl-5438961c527f841385f3ab1b8503235cb786f085.tar.gz
[perl #24189] Incorrect comment in perldoc strict
From: "Iain 'Spoon' Truskett (via RT)" <perlbug-followup@perl.org> Message-Id: <rt-24189-65954.9.50514379869631@rt.perl.org> p4raw-id: //depot/perl@21442
Diffstat (limited to 'lib')
-rw-r--r--lib/strict.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/strict.pm b/lib/strict.pm
index 40fb56e1d3..d14391add4 100644
--- a/lib/strict.pm
+++ b/lib/strict.pm
@@ -115,7 +115,7 @@ on the left hand side of the C<< => >> symbol.
use strict 'subs';
$SIG{PIPE} = Plumber; # blows up
- $SIG{PIPE} = "Plumber"; # just fine: bareword in curlies always ok
+ $SIG{PIPE} = "Plumber"; # just fine: quoted string is always ok
$SIG{PIPE} = \&Plumber; # preferred form
=back