summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-09 00:28:41 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-09 00:28:41 +0000
commitde794aefa6ba7d33eea333e7ae0f266cfd4331a4 (patch)
treee651cb76785606c0c10f8af3c840f35845cd7e5a /io.c
parentbb250b002bbb0c079ead456f1bf0a47a394f29be (diff)
* io.c (IO#new):
Fix indentation from r37444 [ruby-core:48052] [Bug #7179] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37568 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r--io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/io.c b/io.c
index a259058fa9..5cd50d8f23 100644
--- a/io.c
+++ b/io.c
@@ -6962,7 +6962,7 @@ rb_io_stdio_file(rb_io_t *fptr)
*
* Ruby allows the following open modes:
*
- * "r" Read-only, starts at beginning of file (default mode).
+ * "r" Read-only, starts at beginning of file (default mode).
*
* "r+" Read-write, starts at beginning of file.
*
@@ -6982,7 +6982,7 @@ rb_io_stdio_file(rb_io_t *fptr)
* The following modes must be used separately, and along with one or more of
* the modes seen above.
*
- * "b" Binary file mode
+ * "b" Binary file mode
* Suppresses EOL <-> CRLF conversion on Windows. And
* sets external encoding to ASCII-8BIT unless explicitly
* specified.