summaryrefslogtreecommitdiff
path: root/encoding.c
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-02-15 00:53:37 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-02-15 00:53:37 +0000
commit776197f80deba91da96259ac0a3ff75e3f722643 (patch)
treebb0c48bd0205e680c42df7c9a92bcf1cb23b50ca /encoding.c
parentb14b83ae9295d130a21c1b5f75a3154c3a297631 (diff)
Temporary fix not to use non ASCII.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34610 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'encoding.c')
-rw-r--r--encoding.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/encoding.c b/encoding.c
index 5350270d0d..cd55dc2fa8 100644
--- a/encoding.c
+++ b/encoding.c
@@ -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."
*
*/