summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-10-11 09:34:25 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-10-11 09:34:25 +0000
commit334241e3ed0fdd8d654aab56129c50008e797b7f (patch)
tree2329fa3ad7e0c29b80f69a3274bb8e7fe5d931f1 /io.c
parent3e54f0ee1ff1081a0576a141d27616d29b527393 (diff)
rdoc update.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25302 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/io.c b/io.c
index e3f913af23..9b0aadfda8 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 <i>anInteger</i> in the stream according to
* the value of <i>whence</i>:
@@ -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 <i>offset</i> in the stream according to the value
* of <i>whence</i> (see <code>IO#seek</code> 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.