| Newsgroups |
perl.cvs.perlfaq |
| Message-ID |
<[email protected]> |
cvsuser 02/05/23 12:33:50
Modified: . perlfaq5.pod
Log:
* fixed a couple of typos
Revision Changes Path
1.17 +3 -3 perlfaq/perlfaq5.pod
Index: perlfaq5.pod
===================================================================
RCS file: /cvs/public/perlfaq/perlfaq5.pod,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -w -r1.16 -r1.17
--- perlfaq5.pod 23 May 2002 15:49:14 -0000 1.16
+++ perlfaq5.pod 23 May 2002 19:33:50 -0000 1.17
@@ -1,6 +1,6 @@
=head1 NAME
-perlfaq5 - Files and Formats ($Revision: 1.16 $, $Date: 2002/05/23 15:49:14 $)
+perlfaq5 - Files and Formats ($Revision: 1.17 $, $Date: 2002/05/23 19:33:50 $)
=head1 DESCRIPTION
@@ -39,7 +39,7 @@
$| = 1;
select($old_fh);
-Some idioms can handle this is a single statement:
+Some idioms can handle this in a single statement:
select((select(OUTPUT_HANDLE), $| = 1)[0]);
@@ -47,7 +47,7 @@
Some modules offer object-oriented access to handles and their
variables, although they may be overkill if this is the only
-thin you do with them. You can use IO::Handle:
+thing you do with them. You can use IO::Handle:
use IO::Handle;
open(DEV, ">/dev/printer"); # but is this?