From: Iain Spoon Truskett Date: Sun, 12 Oct 2003 09:01:25 +0000 (+0000) Subject: [perl #24189] Incorrect comment in perldoc strict X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5438961c527f841385f3ab1b8503235cb786f085;p=p5sagit%2Fp5-mst-13.2.git [perl #24189] Incorrect comment in perldoc strict From: "Iain 'Spoon' Truskett (via RT)" Message-Id: p4raw-id: //depot/perl@21442 --- diff --git a/lib/strict.pm b/lib/strict.pm index 40fb56e..d14391a 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