aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/string/multibyte.rb
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2017-11-29 15:37:39 +0900
committerGitHub <noreply@github.com>2017-11-29 15:37:39 +0900
commit63d1bf95be6f50ee0c6d97a5df7de2dee1e8e152 (patch)
tree8a574dbae02220012483e5eaab95ece47ecab1d5 /activesupport/lib/active_support/core_ext/string/multibyte.rb
parent17661b8cb2591fda5370f7bf8df53ec78b0cdda4 (diff)
parent5ec53c58f8e900d3ef25de64652c96806c6eb2fe (diff)
downloadrails-63d1bf95be6f50ee0c6d97a5df7de2dee1e8e152.tar.gz
rails-63d1bf95be6f50ee0c6d97a5df7de2dee1e8e152.tar.bz2
rails-63d1bf95be6f50ee0c6d97a5df7de2dee1e8e152.zip
Merge pull request #31274 from dixitp012/correct_output_for_upcase
[ci skip] Correct output for Upcase
Diffstat (limited to 'activesupport/lib/active_support/core_ext/string/multibyte.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/string/multibyte.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/string/multibyte.rb b/activesupport/lib/active_support/core_ext/string/multibyte.rb
index 38224ea5da..075b206d04 100644
--- a/activesupport/lib/active_support/core_ext/string/multibyte.rb
+++ b/activesupport/lib/active_support/core_ext/string/multibyte.rb
@@ -12,7 +12,7 @@ class String
# class. If the proxy class doesn't respond to a certain method, it's forwarded to the encapsulated string.
#
# >> "lj".upcase
- # => "lj"
+ # => "LJ"
# >> "lj".mb_chars.upcase.to_s
# => "LJ"
#