aboutsummaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
authorstomar <stomar@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-06 19:42:36 +0000
committerstomar <stomar@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-06 19:42:36 +0000
commitbc151085fba6f0bf55c9a77a819bdad556b5be68 (patch)
tree1d251fc012531aa282f848e767c46eac702dae13 /io.c
parent42fe57d41b6a317d31f817f75e04851281e27750 (diff)
downloadruby-bc151085fba6f0bf55c9a77a819bdad556b5be68.tar.gz
io.c: [DOC] open mode can be an integer; fix rdoc syntax
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57790 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/io.c b/io.c
index d5c24b36b4..daa352aaa8 100644
--- a/io.c
+++ b/io.c
@@ -7553,8 +7553,8 @@ rb_io_make_open_file(VALUE obj)
* === Open Mode
*
* When +mode+ is an integer it must be combination of the modes defined in
- * File::Constants (+File::RDONLY+, +File::WRONLY | File::CREAT+). See the
- * open(2) man page for more information.
+ * File::Constants (+File::RDONLY+, <code>File::WRONLY|File::CREAT</code>).
+ * See the open(2) man page for more information.
*
* When +mode+ is a string it must be in one of the following forms:
*
@@ -9933,7 +9933,7 @@ seek_before_access(VALUE argp)
* if +length+ is specified. See Encoding.aliases for possible encodings.
*
* :mode::
- * string
+ * string or integer
*
* Specifies the <i>mode</i> argument for open(). It must start
* with an "r", otherwise it will cause an error.
@@ -10108,7 +10108,7 @@ io_s_write(int argc, VALUE *argv, int binary)
* See Encoding.aliases for possible encodings.
*
* :mode::
- * string
+ * string or integer
*
* Specifies the <i>mode</i> argument for open(). It must start
* with "w", "a", or "r+", otherwise it will cause an error.