summaryrefslogtreecommitdiff
path: root/pod/perlfaq5.pod
diff options
context:
space:
mode:
authorTom Christiansen <tchrist@perl.com>1998-08-11 05:58:07 -0500
committerJarkko Hietaniemi <jhi@iki.fi>1998-12-02 18:03:51 +0000
commitb687b08b628449b317ff558f31d9d716ace045de (patch)
treecf2f3d08c76010d3997b1647f790742612a48c39 /pod/perlfaq5.pod
parentb2d124e428258350667f59b4f3c8ccc7a652e994 (diff)
downloadperl-b687b08b628449b317ff558f31d9d716ace045de.tar.gz
Fix most of the bad L<> links of
Subject: bad L<> links Reply-to: tchrist@perl.com To: perlbug@jhereg.perl.com Message-Id: <199808111658.KAA00484@jhereg.perl.com> The ones not fixed may require darker Pod::HTML magic, for example the perlguts.html#tags should work fine, IMHO. p4raw-id: //depot/cfgperl@2437
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 015c9b4d21..3e1103b2a4 100644
--- a/pod/perlfaq5.pod
+++ b/pod/perlfaq5.pod
@@ -289,8 +289,8 @@ pair to make it easy to sort the hash in insertion order.
}
For passing filehandles to functions, the easiest way is to
-prefer them with a star, as in func(*STDIN). See L<perlfaq7/"Passing
-Filehandles"> for details.
+prefer them with a star, as in func(*STDIN).
+See L<perlfaq7/"Passing Filehandles"> for details.
If you want to create many, anonymous handles, you should check out the
Symbol, FileHandle, or IO::Handle (etc.) modules. Here's the equivalent