File::Temp documentation fix
Slaven Rezic [Thu, 24 Oct 2002 19:04:20 +0000 (21:04 +0200)]
Message-Id: <200210241704.g9OH4KlR030883@vran.herceg.de>

p4raw-id: //depot/perl@18124

lib/File/Temp.pm

index 6f351df..00c0309 100644 (file)
@@ -70,7 +70,7 @@ POSIX functions:
   $fh = tmpfile();
 
   ($fh, $file) = tmpnam();
-  ($fh, $file) = tmpfile();
+  $fh = tmpfile();
 
 
 Compatibility functions:
@@ -1471,7 +1471,7 @@ sub tmpnam {
 
 =item B<tmpfile>
 
-In scalar context, returns the filehandle of a temporary file.
+Returns the filehandle of a temporary file.
 
   $fh = tmpfile();