diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-04-26 15:52:35 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-04-26 15:52:35 +0000 |
commit | 7140c8f0cddac4ffc3d06d49d5e571a046dee089 (patch) | |
tree | 373df3a0d788544b921f37aa146fea448f9739c9 /transcode.c | |
parent | 4c7106c679273b81f0645bf45f02bc5bc942c05a (diff) | |
download | ruby-7140c8f0cddac4ffc3d06d49d5e571a046dee089.tar.gz |
* transcode.c (econv_init): fix rdoc.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31353 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'transcode.c')
-rw-r--r-- | transcode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/transcode.c b/transcode.c index d64fe80fc8..5106f012dd 100644 --- a/transcode.c +++ b/transcode.c @@ -3211,8 +3211,8 @@ rb_econv_init_by_convpath(VALUE self, VALUE convpath, * :undef => :replace # replace undefined conversion * :replace => string # replacement string ("?" or "\uFFFD" if not specified) * :universal_newline => true # decorator for converting CRLF and CR to LF - * :crlf_newline => true # decorator for converting LF to CRLF - * :cr_newline => true # decorator for converting LF to CR + * :crlf_newline => true # decorator for converting CRLF to LF + * :cr_newline => true # decorator for converting CR to LF * :xml => :text # escape as XML CharData. * :xml => :attr # escape as XML AttValue * integer form: |