arguments swapped in perlapio.pod
authorHans Mulder <hansmu@xs4all.nl>
Thu, 7 Aug 1997 00:00:00 +0000 (00:00 +0000)
committerTim Bunce <Tim.Bunce@ig.co.uk>
Wed, 6 Aug 1997 12:00:00 +0000 (00:00 +1200)
Three PerlIO functions have their arguments swapped (compared with
their stdio counterparts).  Perlapio.pod gets this almost right:

p5p-msgid: 199706240049.CAA10534@xs2.xs4all.nl

pod/perlapio.pod

index d88e445..0db385e 100644 (file)
@@ -99,12 +99,12 @@ are different, there is only one "count" and order has
 
 =item B<PerlIO_close(f)>
 
-=item B<PerlIO_puts(s,f)>, B<PerlIO_putc(c,f)>
+=item B<PerlIO_puts(f,s)>, B<PerlIO_putc(f,c)>
 
 These correspond to fputs() and fputc().
 Note that arguments have been revised to have "file" first.
 
-=item B<PerlIO_ungetc(c,f)>
+=item B<PerlIO_ungetc(f,c)>
 
 This corresponds to ungetc().
 Note that arguments have been revised to have "file" first.