diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-03 18:58:45 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-03 18:58:45 +0000 |
commit | 492a8376eb5b8df3e0aa82a2a70345b283138423 (patch) | |
tree | 8a136c0e449ebac6ea6e35898b5ae06788800c41 /pod/perlfaq8.pod | |
parent | d6a71824a1e9d5ec2e4050f5e51f00e0aed29f1b (diff) | |
download | perl-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.pod | 4 |
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? |