diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-09-05 23:17:11 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-09-05 23:17:11 +0000 |
commit | a674f06e5ed5a1d97712aad6e0a01579c786b707 (patch) | |
tree | d9f7f1444b5386a6c16b6cc5894504f124e8c6da | |
parent | 46fffe43c6bd1e4c5d0a900da479806055656642 (diff) | |
download | ruby-a674f06e5ed5a1d97712aad6e0a01579c786b707.tar.gz ruby-a674f06e5ed5a1d97712aad6e0a01579c786b707.tar.xz ruby-a674f06e5ed5a1d97712aad6e0a01579c786b707.zip |
comment updated.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19170 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | include/ruby/encoding.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ruby/encoding.h b/include/ruby/encoding.h index ecc00aff5..1994bcdc5 100644 --- a/include/ruby/encoding.h +++ b/include/ruby/encoding.h @@ -257,10 +257,10 @@ void rb_econv_binmode(rb_econv_t *ec); #define ECONV_UNDEF_REPLACE 0x0020 #define ECONV_UNDEF_HEX_CHARREF 0x0030 -/* effective only if output is ascii compatible */ +/* usable only if destination encoding is ascii compatible */ #define ECONV_UNIVERSAL_NEWLINE_DECODER 0x0100 -/* effective only if input is ascii compatible */ +/* usable only if source encoding is ascii compatible */ #define ECONV_CRLF_NEWLINE_ENCODER 0x0200 #define ECONV_CR_NEWLINE_ENCODER 0x0400 |