From: Slaven Rezic Date: Thu, 24 Oct 2002 19:04:20 +0000 (+0200) Subject: File::Temp documentation fix X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c6d63c67cbd3ac9fa6ff9e314b9945f590abfc9d;p=p5sagit%2Fp5-mst-13.2.git File::Temp documentation fix Message-Id: <200210241704.g9OH4KlR030883@vran.herceg.de> p4raw-id: //depot/perl@18124 --- diff --git a/lib/File/Temp.pm b/lib/File/Temp.pm index 6f351df..00c0309 100644 --- a/lib/File/Temp.pm +++ b/lib/File/Temp.pm @@ -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 -In scalar context, returns the filehandle of a temporary file. +Returns the filehandle of a temporary file. $fh = tmpfile();