ruby-changes:35936
From: duerst <ko1@a...>
Date: Sun, 19 Oct 2014 17:37:46 +0900 (JST)
Subject: [ruby-changes:35936] duerst:r48017 (trunk): lib/unicode_normalize.rb: Small documentation fix.
duerst 2014-10-19 17:37:40 +0900 (Sun, 19 Oct 2014) New Revision: 48017 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=48017 Log: lib/unicode_normalize.rb: Small documentation fix. Modified files: trunk/ChangeLog trunk/lib/unicode_normalize.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 48016) +++ ChangeLog (revision 48017) @@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Sun Oct 19 17:37:37 2014 Martin Duerst <duerst@i...> + + * lib/unicode_normalize.rb: Small documentation fix. + Sun Oct 19 17:26:26 2014 Martin Duerst <duerst@i...> * lib/unicode_normalize.rb: Added documentation. Index: lib/unicode_normalize.rb =================================================================== --- lib/unicode_normalize.rb (revision 48016) +++ lib/unicode_normalize.rb (revision 48017) @@ -18,8 +18,9 @@ class String https://github.com/ruby/ruby/blob/trunk/lib/unicode_normalize.rb#L18 # # If the string is not in a Unicode Encoding, then an Exception is raised. # In this context, 'Unicode Encoding' means any of UTF-8, UTF-16BE/LE, - # and UTF-32BE/LE. Currently, anything else than UTF-8 is implemented - # by converting to UTF-8, which makes it slower than UTF-8. + # and UTF-32BE/LE, as well as GB18030, UCS_2BE, and UCS_4BE. Anything + # else than UTF-8 is implemented by converting to UTF-8, + # which makes it slower than UTF-8. # # _Examples_ # -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/