From: Chris Lightfoot Date: Thu, 18 Nov 2004 18:09:54 +0000 (+0000) Subject: [perl #32486] error in documentation for POSIX::pipe X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1bb8ad523126a79135f26a08af30cf96a4989f0f;p=p5sagit%2Fp5-mst-13.2.git [perl #32486] error in documentation for POSIX::pipe From: chris@ex-parrot.com (via RT) Message-ID: p4raw-id: //depot/perl@23518 --- diff --git a/ext/POSIX/POSIX.pod b/ext/POSIX/POSIX.pod index 66f5381..e7e0ad3 100644 --- a/ext/POSIX/POSIX.pod +++ b/ext/POSIX/POSIX.pod @@ -956,8 +956,8 @@ Create an interprocess channel. This returns file descriptors like those returned by C. ($fd0, $fd1) = POSIX::pipe(); - POSIX::write( $fd0, "hello", 5 ); - POSIX::read( $fd1, $buf, 5 ); + POSIX::write( $fd1, "hello", 5 ); + POSIX::read( $fd0, $buf, 5 ); See also L.