summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorHans Mulder <hansmu@xs4all.nl>1997-08-07 00:00:00 +0000
committerTim Bunce <Tim.Bunce@ig.co.uk>1997-08-07 00:00:00 +1200
commit21917246723837f23ca941fdf14b8ad84573a24e (patch)
tree15df72ef92c349dfb40ac8ff6f8a73977dffd7fe /pod
parent4dadca9e512ca0026c6b6f205d33186cd65fda5e (diff)
downloadperl-21917246723837f23ca941fdf14b8ad84573a24e.tar.gz
arguments swapped in perlapio.pod
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
Diffstat (limited to 'pod')
-rw-r--r--pod/perlapio.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlapio.pod b/pod/perlapio.pod
index d88e44509c..0db385e388 100644
--- a/pod/perlapio.pod
+++ b/pod/perlapio.pod
@@ -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.