[perl #24189] Incorrect comment in perldoc strict
authorIain Spoon Truskett <unknown>
Sun, 12 Oct 2003 09:01:25 +0000 (09:01 +0000)
committerAbhijit Menon-Sen <ams@wiw.org>
Mon, 13 Oct 2003 08:41:17 +0000 (08:41 +0000)
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

lib/strict.pm

index 40fb56e..d14391a 100644 (file)
@@ -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