aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext
diff options
context:
space:
mode:
authorDixit Patel <dixitpatel012@aol.com>2017-11-29 11:40:45 +0530
committerDixit Patel <dixit@perceptionsystem.com>2017-11-29 11:42:12 +0530
commit5ec53c58f8e900d3ef25de64652c96806c6eb2fe (patch)
tree1d69e8fb827ce5b13afc3b3942f4ece4488f5dd8 /activesupport/lib/active_support/core_ext
parent02b5b1a609a582efafa0d619116109ca4a4e8abd (diff)
downloadrails-5ec53c58f8e900d3ef25de64652c96806c6eb2fe.tar.gz
rails-5ec53c58f8e900d3ef25de64652c96806c6eb2fe.tar.bz2
rails-5ec53c58f8e900d3ef25de64652c96806c6eb2fe.zip
[ci skip] Correct output for Upcase
Diffstat (limited to 'activesupport/lib/active_support/core_ext')
-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"
#