diff options
author | Iain Spoon Truskett <unknown> | 2003-10-12 09:01:25 +0000 |
---|---|---|
committer | Abhijit Menon-Sen <ams@wiw.org> | 2003-10-13 08:41:17 +0000 |
commit | 5438961c527f841385f3ab1b8503235cb786f085 (patch) | |
tree | ad7bbbe62038f772535c6a80aa681c6296892346 /lib | |
parent | 81eaca17788a9221a27310f8de41fa6679a5a1ee (diff) | |
download | perl-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.pm | 2 |
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 |