aboutsummaryrefslogtreecommitdiffstats
path: root/string.c
diff options
context:
space:
mode:
authorduerst <duerst@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-06-11 00:46:21 +0000
committerduerst <duerst@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-06-11 00:46:21 +0000
commit89c6644b5f464e3a07529cb4869528b45ae2ee65 (patch)
treec32a0bd7e9732f3f387ece638559ef79149c2b44 /string.c
parent2cd23467fece5c4dfcaa0aba30065d1b48a890e0 (diff)
downloadruby-89c6644b5f464e3a07529cb4869528b45ae2ee65.tar.gz
* enc/iso_8859_1.c: Implement non-ASCII case mapping.
* test/ruby/enc/test_case_comprehensive.rb: Tests for above. * string.c: Add iso-8859-1 to supported encodings. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55373 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'string.c')
-rw-r--r--string.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/string.c b/string.c
index 4567ce2af3..eb02189dd8 100644
--- a/string.c
+++ b/string.c
@@ -6011,7 +6011,7 @@ rb_str_downcase_bang(int argc, VALUE *argv, VALUE str)
* by case mapping operations.
*
* Non-ASCII case mapping/folding is currently supported for UTF-8,
- * UTF-16BE/LE, and UTF-32BE/LE Strings/Symbols.
+ * UTF-16BE/LE, UTF-32BE/LE, and ISO-8859-1 Strings/Symbols.
* This support will be extended to other encodings.
*
* "hEllO".downcase #=> "hello"