summaryrefslogtreecommitdiff
path: root/pod/perlfaq8.pod
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2000-03-03 18:58:45 +0000
committerGurusamy Sarathy <gsar@cpan.org>2000-03-03 18:58:45 +0000
commit492a8376eb5b8df3e0aa82a2a70345b283138423 (patch)
tree8a136c0e449ebac6ea6e35898b5ae06788800c41 /pod/perlfaq8.pod
parentd6a71824a1e9d5ec2e4050f5e51f00e0aed29f1b (diff)
downloadperl-492a8376eb5b8df3e0aa82a2a70345b283138423.tar.gz
whitespace and readabiliti nits in the pods (from Michael G Schwern
and Robin Barker) p4raw-id: //depot/perl@5493
Diffstat (limited to 'pod/perlfaq8.pod')
-rw-r--r--pod/perlfaq8.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlfaq8.pod b/pod/perlfaq8.pod
index 0d77dc13fc..ed22ba0c59 100644
--- a/pod/perlfaq8.pod
+++ b/pod/perlfaq8.pod
@@ -410,7 +410,7 @@ For example:
}
However, because syscalls restart by default, you'll find that if
-you're in a "slow" call, such as E<lt>FHE<gt>, read(), connect(), or
+you're in a "slow" call, such as <FH>, read(), connect(), or
wait(), that the only way to terminate them is by "longjumping" out;
that is, by raising an exception. See the time-out handler for a
blocking flock() in L<perlipc/"Signals"> or chapter 6 of the Camel.
@@ -976,7 +976,7 @@ sysopen():
sysopen(FH, "/tmp/somefile", O_WRONLY|O_NDELAY|O_CREAT, 0644)
or die "can't open /tmp/somefile: $!":
-
+
=head2 How do I install a module from CPAN?