* encoding.c: Typo in Encoding overview by Tom Wardrop [GH fixes #255]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39575 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
zzak 2013-03-04 01:24:40 +00:00
parent d71177feab
commit d4d14c1988
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Mon Mar 4 10:23:00 2013 Zachary Scott <zachary@zacharyscott.net>
* encoding.c: Typo in Encoding overview by Tom Wardrop [GH fixes #255]
Sun Mar 3 12:35:08 2013 Nobuyoshi Nakada <nobu@ruby-lang.org> Sun Mar 3 12:35:08 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
* lib/mkmf.rb (MakeMakefile#libpath_env): set runtime library path for * lib/mkmf.rb (MakeMakefile#libpath_env): set runtime library path for

View File

@ -1676,7 +1676,7 @@ rb_enc_aliases(VALUE klass)
* #=> "R\xC3\xA9sum\xC3\xA9" * #=> "R\xC3\xA9sum\xC3\xA9"
* string.encoding * string.encoding
* #=> #<Encoding:ISO-8859-1> * #=> #<Encoding:ISO-8859-1>
* string.force_encoding(Encoding::UTF-8) * string.force_encoding(Encoding::UTF_8)
* #=> "R\u00E9sum\u00E9" * #=> "R\u00E9sum\u00E9"
* *
* Second, it is possible to transcode a string, i.e. translate its internal * Second, it is possible to transcode a string, i.e. translate its internal