diff options
author | Steve Klabnik <steve@steveklabnik.com> | 2012-11-28 13:56:36 -0800 |
---|---|---|
committer | Steve Klabnik <steve@steveklabnik.com> | 2012-11-28 13:58:51 -0800 |
commit | 27b79f4c911fdfce186086cfaa6646f1c2083aa0 (patch) | |
tree | b1db68ce8ca80ab47643ff0949f869477ab23b4b /activesupport/lib | |
parent | e9df07870fc16eaefbff60e0e80921489eefcd91 (diff) | |
download | rails-27b79f4c911fdfce186086cfaa6646f1c2083aa0.tar.gz rails-27b79f4c911fdfce186086cfaa6646f1c2083aa0.tar.bz2 rails-27b79f4c911fdfce186086cfaa6646f1c2083aa0.zip |
Fix documentation for String#mb_chars.
This documentation has been out of date.
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/core_ext/string/multibyte.rb | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/activesupport/lib/active_support/core_ext/string/multibyte.rb b/activesupport/lib/active_support/core_ext/string/multibyte.rb index 4e7824ad74..0ea5fe3571 100644 --- a/activesupport/lib/active_support/core_ext/string/multibyte.rb +++ b/activesupport/lib/active_support/core_ext/string/multibyte.rb @@ -6,7 +6,7 @@ class String # # +mb_chars+ is a multibyte safe proxy for string methods. # - # In Ruby 1.8 and older it creates and returns an instance of the ActiveSupport::Multibyte::Chars class which + # It creates and returns an instance of the ActiveSupport::Multibyte::Chars class which # encapsulates the original string. A Unicode safe version of all the String methods are defined on this proxy # class. If the proxy class doesn't respond to a certain method, it's forwarded to the encapsulated string. # @@ -17,9 +17,6 @@ class String # name.mb_chars.reverse.to_s # => "rellüM sualC" # name.mb_chars.length # => 12 # - # In Ruby 1.9 and newer +mb_chars+ returns +self+ because String is (mostly) encoding aware. This means that - # it becomes easy to run one version of your code on multiple Ruby versions. - # # == Method chaining # # All the methods on the Chars proxy which normally return a string will return a Chars object. This allows |