ruby-changes:71109
From: Peter <ko1@a...>
Date: Mon, 7 Feb 2022 23:52:28 +0900 (JST)
Subject: [ruby-changes:71109] f53f49197f (master): [DOC] Replace with IO@Modes
https://git.ruby-lang.org/ruby.git/commit/?id=f53f49197f From f53f49197f8f785d372847b537d3607a2c71c70d Mon Sep 17 00:00:00 2001 From: Peter Zhu <peter@p...> Date: Mon, 7 Feb 2022 09:02:49 -0500 Subject: [DOC] Replace with IO@Modes --- file.c | 2 +- io.c | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/file.c b/file.c index 2cd011375a..990ae4fc64 100644 --- a/file.c +++ b/file.c @@ -6523,7 +6523,7 @@ const char ruby_null_device[] = https://github.com/ruby/ruby/blob/trunk/file.c#L6523 * * Note that file permissions are quite different from the _mode_ * of a file stream (\File object). - * See {IO Modes}[rdoc-ref:IO@Modes]. + * See IO@Modes. * * In a \File object, the permissions are available thus, * where method +mode+, despite its name, returns permissions: 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) https://github.com/ruby/ruby/blob/trunk/io.c#L2048 * 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) https://github.com/ruby/ruby/blob/trunk/io.c#L2108 * 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); https://github.com/ruby/ruby/blob/trunk/io.c#L7384 * 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) https://github.com/ruby/ruby/blob/trunk/io.c#L8936 * 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) https://github.com/ruby/ruby/blob/trunk/io.c#L9068 * 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) -- cgit v1.2.1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/