[patch] perlfaq7
Gerrit P. Haase [Thu, 14 Dec 2000 15:31:07 +0000 (16:31 +0100)]
Message-ID: <3A38E7BB.13178.11C40A8@localhost>

p4raw-id: //depot/perl@8110

pod/perlfaq7.pod

index 9e559f7..0299c2d 100644 (file)
@@ -397,7 +397,7 @@ they'll still work properly under C<use strict 'refs'>.  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;
     }