From 323fae7ef538932445cadf93ca931a75b5609fe2 Mon Sep 17 00:00:00 2001 From: akr Date: Sun, 11 Oct 2009 09:34:25 +0000 Subject: rdoc update. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25302 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- io.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/io.c b/io.c index e3f913af2..9b0aadfda 100644 --- a/io.c +++ b/io.c @@ -1062,7 +1062,7 @@ rb_io_seek(VALUE io, VALUE offset, int whence) /* * call-seq: - * ios.seek(amount, whence=SEEK_SET) -> 0 + * ios.seek(amount, whence=IO::SEEK_SET) -> 0 * * Seeks to a given offset anInteger in the stream according to * the value of whence: @@ -3686,7 +3686,7 @@ rb_io_close_write(VALUE io) /* * call-seq: - * ios.sysseek(offset, whence=SEEK_SET) => integer + * ios.sysseek(offset, whence=IO::SEEK_SET) => integer * * Seeks to a given offset in the stream according to the value * of whence (see IO#seek for values of @@ -8633,7 +8633,7 @@ argf_tell(VALUE argf) /* * call-seq: - * ARGF.seek(amount, whence=SEEK_SET) -> 0 + * ARGF.seek(amount, whence=IO::SEEK_SET) -> 0 * * Seeks to offset _amount_ (an +Integer+) in the +ARGF+ stream according to * the value of _whence_. See +IO#seek+ for further details. -- cgit