aboutsummaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
authorPeter Zhu <peter@peterzhu.ca>2022-02-07 09:02:49 -0500
committerPeter Zhu <peter@peterzhu.ca>2022-02-07 09:52:06 -0500
commitf53f49197f8f785d372847b537d3607a2c71c70d (patch)
tree9abd89dce0d143aa4316cb2d0ceb16b963a0727c /io.c
parent9b3115ff643e2c3d30f12f7f7a80a07c686e23d2 (diff)
downloadruby-f53f49197f8f785d372847b537d3607a2c71c70d.tar.gz
[DOC] Replace with IO@Modes
Diffstat (limited to 'io.c')
-rw-r--r--io.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/io.c b/io.c
index 568fcf659c..2acecb550b 100644
--- a/io.c
+++ b/io.c
@@ -2048,7 +2048,7 @@ io_writev(int argc, const VALUE *argv, VALUE io)
* write(*objects) -> integer
*
* Writes each of the given +objects+ to +self+,
- * which must be opened for writing (see {Modes}[rdoc-ref:IO@Modes]);
+ * which must be opened for writing (see IO@Modes);
* returns the total number bytes written;
* each of +objects+ that is not a string is converted via method +to_s+:
*
@@ -2108,7 +2108,7 @@ rb_io_writev(VALUE io, int argc, const VALUE *argv)
* self << object -> self
*
* Writes the given +object+ to +self+,
- * which must be opened for writing (see {Modes}[rdoc-ref:IO@Modes]);
+ * which must be opened for writing (see IO@Modes);
* returns +self+;
* if +object+ is not a string, it is converted via method +to_s+:
*
@@ -7384,7 +7384,7 @@ static VALUE popen_finish(VALUE port, VALUE klass);
* and the block's value is assigned to global variable <tt>$?</tt> and returned.
*
* Optional argument +mode+ may be any valid \IO mode.
- * See {Modes}[rdoc-ref:IO@Modes].
+ * See IO@Modes.
*
* Required argument +cmd+ determines which of the following occurs:
*
@@ -8936,7 +8936,7 @@ rb_io_make_open_file(VALUE obj)
* IO.new(fd) # => #<IO:fd 3>
*
* Optional argument +mode+ (defaults to 'r') must specify a valid mode
- * see {\IO Modes}[rdoc-ref:IO@Modes]:
+ * see IO@Modes:
*
* IO.new(fd, 'w') # => #<IO:fd 3>
* IO.new(fd, File::WRONLY) # => #<IO:fd 3>
@@ -9068,7 +9068,7 @@ rb_io_set_encoding_by_bom(VALUE io)
* File.new('t.txt')
*
* Optional argument +mode+ (defaults to 'r') must specify a valid mode
- * see {\IO Modes}[rdoc-ref:IO@Modes]:
+ * see IO@Modes:
*
* File.new('t.tmp', 'w')
* File.new('t.tmp', File::RDONLY)