summaryrefslogtreecommitdiff
path: root/include/ruby
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-18 13:35:55 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-18 13:35:55 +0000
commitedc9581f16bc48310051072a4135bdcdccee1a70 (patch)
tree811fdc34901ef070e9848b490f42cc842771a71c /include/ruby
parent035d4816c3782eca70464fa553b968dc46adee53 (diff)
* io.c (make_writeconv): if enc and enc2 is set, convert
string.encoding to enc2. * include/ruby/io.h: comment changed. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18692 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby')
-rw-r--r--include/ruby/io.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ruby/io.h b/include/ruby/io.h
index 32830aaaea..9d5407e1f3 100644
--- a/include/ruby/io.h
+++ b/include/ruby/io.h
@@ -53,7 +53,7 @@ typedef struct rb_io_t {
* enc enc2 read action write action
* NULL NULL force_encoding(default_external) write the byte sequence of str
* e1 NULL force_encoding(e1) convert str.encoding to e1
- * e1 e2 convert from e2 to e1 convert from e1 to e2
+ * e1 e2 convert from e2 to e1 convert str.encoding to e2
*/
rb_encoding *enc;
rb_encoding *enc2;