From: Gerrit P. Haase Date: Thu, 14 Dec 2000 15:31:07 +0000 (+0100) Subject: [patch] perlfaq7 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=fc40549da36a06c4f8c329427e99d706b2249e19;p=p5sagit%2Fp5-mst-13.2.git [patch] perlfaq7 Message-ID: <3A38E7BB.13178.11C40A8@localhost> p4raw-id: //depot/perl@8110 --- diff --git a/pod/perlfaq7.pod b/pod/perlfaq7.pod index 9e559f7..0299c2d 100644 --- a/pod/perlfaq7.pod +++ b/pod/perlfaq7.pod @@ -397,7 +397,7 @@ they'll still work properly under C. For example: If you're planning on generating new filehandles, you could do this: sub openit { - my $name = shift; + my $path = shift; local *FH; return open (FH, $path) ? *FH : undef; }