summaryrefslogtreecommitdiff
path: root/ext/IO
diff options
context:
space:
mode:
authorAbigail <abigail@abigail.be>2001-04-29 05:14:25 +0200
committerJarkko Hietaniemi <jhi@iki.fi>2001-04-29 02:52:44 +0000
commitf4315cfa2587f64466f29dc6226481e910d50166 (patch)
treeb99066e31edf657930d6827c62a531fe2f60bfcd /ext/IO
parent3568d8383f3d0b22eb07927391114af2a91b06ed (diff)
downloadperl-f4315cfa2587f64466f29dc6226481e910d50166.tar.gz
Doc fixes.
Message-ID: <20010429011425.24503.qmail@foad.org> p4raw-id: //depot/perl@9902
Diffstat (limited to 'ext/IO')
-rw-r--r--ext/IO/lib/IO/Seekable.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/IO/lib/IO/Seekable.pm b/ext/IO/lib/IO/Seekable.pm
index d3dfa1e697..95dd4d0c36 100644
--- a/ext/IO/lib/IO/Seekable.pm
+++ b/ext/IO/lib/IO/Seekable.pm
@@ -41,7 +41,7 @@ corresponding built-in functions:
=over 4
-=item $io->setpos ( POS, WHENCE )
+=item $io->seek ( POS, WHENCE )
Seek the IO::File to position POS, relative to WHENCE:
@@ -55,7 +55,7 @@ POS is absolute position. (Seek relative to the start of the file)
POS is an offset from the current position. (Seek relative to current)
-=item WHENCE=1 (SEEK_END)
+=item WHENCE=2 (SEEK_END)
POS is an offset from the end of the file. (Seek relative to end)