mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
lib/unicode_normalize.rb: Small documentation fix.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48017 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f83c0b0ae7
commit
281bfbd9cd
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
Sun Oct 19 17:37:37 2014 Martin Duerst <duerst@it.aoyama.ac.jp>
|
||||
|
||||
* lib/unicode_normalize.rb: Small documentation fix.
|
||||
|
||||
Sun Oct 19 17:26:26 2014 Martin Duerst <duerst@it.aoyama.ac.jp>
|
||||
|
||||
* lib/unicode_normalize.rb: Added documentation.
|
||||
|
|
|
@ -18,8 +18,9 @@ class String
|
|||
#
|
||||
# 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_
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue