mistaken variable in pod
Yitzchak Scott-Thoennes [Mon, 28 Jan 2008 13:39:29 +0000 (05:39 -0800)]
From: "Yitzchak Scott-Thoennes" <sthoenna@efn.org>
Message-ID: <40783.64.81.167.122.1201556369.squirrel@webmail.efn.org>

p4raw-id: //depot/perl@33101

ext/POSIX/POSIX.pod

index cd42f08..bb3ee3a 100644 (file)
@@ -1648,7 +1648,7 @@ calling C<POSIX::open>.
 
        $fd = POSIX::open( "foo", &POSIX::O_WRONLY );
        $buf = "hello";
-       $bytes = POSIX::write( $b, $buf, 5 );
+       $bytes = POSIX::write( $fd, $buf, 5 );
 
 Returns C<undef> on failure.