summaryrefslogtreecommitdiff
path: root/pod/perlfaq5.pod
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2003-01-30 20:52:05 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2003-01-30 20:52:05 +0000
commit04d666b12563dfde61714b0a22a39c0eb94d4f16 (patch)
tree05bfd4fd5838fc00413490f7820434b353fa8a09 /pod/perlfaq5.pod
parenta5b510f29827514a9bbd7758f42522c7688a9dc7 (diff)
downloadperl-04d666b12563dfde61714b0a22a39c0eb94d4f16.tar.gz
FAQ sync.
p4raw-id: //depot/perl@18604
Diffstat (limited to 'pod/perlfaq5.pod')
-rw-r--r--pod/perlfaq5.pod6
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/perlfaq5.pod b/pod/perlfaq5.pod
index c04f3c6872..9e30b54cfd 100644
--- a/pod/perlfaq5.pod
+++ b/pod/perlfaq5.pod
@@ -1,6 +1,6 @@
=head1 NAME
-perlfaq5 - Files and Formats ($Revision: 1.27 $, $Date: 2002/12/06 07:40:11 $)
+perlfaq5 - Files and Formats ($Revision: 1.28 $, $Date: 2003/01/26 17:45:46 $)
=head1 DESCRIPTION
@@ -434,7 +434,7 @@ isn't as exclusive as you might wish.
See also the new L<perlopentut> if you have it (new for 5.6).
-=head2 Why do I sometimes get an "Argument list too long" when I use <*>?
+=head2 Why do I sometimes get an "Argument list too long" when I use E<lt>*E<gt>?
The C<< <> >> operator performs a globbing operation (see above).
In Perl versions earlier than v5.6.0, the internal glob() operator forks
@@ -537,7 +537,7 @@ L<perlopentut/"File Locking"> if you have it (new for 5.6).
=back
-=head2 Why can't I just open(FH, ">file.lock")?
+=head2 Why can't I just open(FH, "E<gt>file.lock")?
A common bit of code B<NOT TO USE> is this: