Temporary fix not to use non ASCII.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34610 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2012-02-15 00:53:37 +00:00
parent b14b83ae92
commit 776197f80d

View File

@ -1757,7 +1757,7 @@ rb_enc_aliases(VALUE klass)
*
* == IO encoding example
*
* In the following example a UTF-8 encoded string "Résumé" is transcoded for
* In the following example a UTF-8 encoded string "R.sum." is transcoded for
* output to ISO-8859-1 encoding, then read back in and transcoded to UTF-8:
*
* string = "R\u00E9sum\u00E9"
@ -1784,7 +1784,7 @@ rb_enc_aliases(VALUE klass)
* "R\xE9sum\xE9"
*
* transcoded text:
* "Résumé"
* "R.sum."
*
*/