summaryrefslogtreecommitdiff
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
commit02f7ad6237466d552c21f1cc78acd33febaa5ee6 (patch)
treec32a0bd7e9732f3f387ece638559ef79149c2b44 /string.c
parente8700ab03d78a619fadd13cee67b0c7fd135d834 (diff)
* 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"