1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

String#downcase, upcase, and swapcase are public methods

This commit is contained in:
Akira Matsuda 2020-10-02 14:48:51 +09:00
parent 87ae294f36
commit 4e9a4519b7

View file

@ -143,7 +143,7 @@ module ActiveSupport
will be removed from Rails 6.1. Use String methods directly.
MSG
string.send(method)
string.public_send(method)
end
end