summaryrefslogtreecommitdiff
path: root/pod/perlform.pod
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2011-04-26 11:08:12 -0600
committerKarl Williamson <public@khwilliamson.com>2011-05-18 11:15:04 -0600
commit3573d64908b2432595567c9e3562b0ee4a6af9fe (patch)
tree6e2c4c8ab93ee607ae8d0f9731feb82f1ecb020c /pod/perlform.pod
parent2788353a98f50642ccedddc9ebf6d91f7c4e0276 (diff)
downloadperl-3573d64908b2432595567c9e3562b0ee4a6af9fe.tar.gz
perlform: Revise link
The link doesn't have to be to the exact text, can just name the function, and doing so is clearer.
Diffstat (limited to 'pod/perlform.pod')
-rw-r--r--pod/perlform.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlform.pod b/pod/perlform.pod
index a2aa6588b7..6a4fc48f9e 100644
--- a/pod/perlform.pod
+++ b/pod/perlform.pod
@@ -393,7 +393,7 @@ by checking $FORMAT_LINES_LEFT before each write() and print the footer
yourself if necessary.
Here's another strategy: Open a pipe to yourself, using C<open(MYSELF, "|-")>
-(see L<perlfunc/"open FILEHANDLE">) and always write() to MYSELF instead of STDOUT.
+(see L<perlfunc/open>) and always write() to MYSELF instead of STDOUT.
Have your child process massage its STDIN to rearrange headers and footers
however you like. Not very convenient, but doable.