summaryrefslogtreecommitdiff
path: root/pod/perlfaq5.pod
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-06-03 07:58:10 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-06-03 07:58:10 +0000
commit6670e5e7b286c73a0b574b82775e6e4a452e6dcc (patch)
tree2a37f69d5e3e07f3a28190c039160f6b9b50b052 /pod/perlfaq5.pod
parentc1c0c2581328c232f98302e238b82c87a001be0b (diff)
downloadperl-6670e5e7b286c73a0b574b82775e6e4a452e6dcc.tar.gz
FAQ sync
p4raw-id: //depot/perl@24684
Diffstat (limited to 'pod/perlfaq5.pod')
-rw-r--r--pod/perlfaq5.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlfaq5.pod b/pod/perlfaq5.pod
index ab0ba26be4..45a1aa8c50 100644
--- a/pod/perlfaq5.pod
+++ b/pod/perlfaq5.pod
@@ -1,6 +1,6 @@
=head1 NAME
-perlfaq5 - Files and Formats ($Revision: 1.35 $, $Date: 2005/01/21 12:26:11 $)
+perlfaq5 - Files and Formats ($Revision: 1.36 $, $Date: 2005/04/22 19:04:48 $)
=head1 DESCRIPTION
@@ -129,7 +129,7 @@ with C<undef> in place of the file name. The C<open()> function
creates an anonymous temporary file.
open my $tmp, '+>', undef or die $!;
-
+
Otherwise, you can use the File::Temp module.
use File::Temp qw/ tempfile tempdir /;