Typo tweaks from Gerrit P. Haase. Fcntl, fcntl, fcntl.
Jarkko Hietaniemi [Mon, 18 Aug 2003 19:34:16 +0000 (19:34 +0000)]
p4raw-id: //depot/perl@20764

ext/Fcntl/Fcntl.pm
pod/perlfunc.pod
t/io/utf8.t

index 9cdeb13..7ef0038 100644 (file)
@@ -11,8 +11,8 @@ Fcntl - load the C Fcntl.h defines
 
 =head1 DESCRIPTION
 
-This module is just a translation of the C F<fnctl.h> file.
-Unlike the old mechanism of requiring a translated F<fnctl.ph>
+This module is just a translation of the C F<fcntl.h> file.
+Unlike the old mechanism of requiring a translated F<fcntl.ph>
 file, this uses the B<h2xs> program (see the Perl source distribution)
 and your native C compiler.  This means that it has a 
 far more likely chance of getting the numbers right.
index f10927e..8f2222a 100644 (file)
@@ -1644,7 +1644,7 @@ For example:
     fcntl($filehandle, F_GETFL, $packed_return_buffer)
        or die "can't fcntl F_GETFL: $!";
 
-You don't have to check for C<defined> on the return from C<fnctl>.
+You don't have to check for C<defined> on the return from C<fcntl>.
 Like C<ioctl>, it maps a C<0> return from the system call into
 C<"0 but true"> in Perl.  This string is true in boolean context and C<0>
 in numeric context.  It is also exempt from the normal B<-w> warnings
@@ -5671,7 +5671,7 @@ and C<SEEK_END> (start of the file, current position, end of the file)
 from the Fcntl module.  Use of the constants is also more portable
 than relying on 0, 1, and 2.  For example to define a "systell" function:
 
-       use Fnctl 'SEEK_CUR';
+       use Fcntl 'SEEK_CUR';
        sub systell { sysseek($_[0], 0, SEEK_CUR) }
 
 Returns the new position, or the undefined value on failure.  A position
index f77aa3f..6a24c51 100755 (executable)
@@ -301,7 +301,7 @@ ok( 1 );
     # last test here 49
 }
 
-# sysread() and syswrite() tested in lib/open.t since Fnctl is used
+# sysread() and syswrite() tested in lib/open.t since Fcntl is used
 
 END {
     1 while unlink "a";