diff options
-rw-r--r-- | activesupport/lib/active_support/multibyte/chars.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/multibyte/chars.rb b/activesupport/lib/active_support/multibyte/chars.rb index 5184026c63..be9c6d3567 100644 --- a/activesupport/lib/active_support/multibyte/chars.rb +++ b/activesupport/lib/active_support/multibyte/chars.rb @@ -321,7 +321,7 @@ module ActiveSupport #:nodoc: # character. # # Example: - # 'こにちわ'.mb_chars.slice(2..3).to_s #=> "ちわ" + # 'こんにちは'.mb_chars.slice(2..3).to_s #=> "にち" def slice(*args) if args.size > 2 raise ArgumentError, "wrong number of arguments (#{args.size} for 1)" # Do as if we were native @@ -676,4 +676,4 @@ module ActiveSupport #:nodoc: end end end -end
\ No newline at end of file +end |