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

Merge pull request #3114 from zenprogrammer/fix_constantize_doc

Minor doc fix to String#constantize
This commit is contained in:
José Valim 2011-09-23 10:30:15 -07:00
commit 8bde477e9d

View file

@ -36,9 +36,9 @@ class String
# or is not initialized. See ActiveSupport::Inflector.constantize
#
# Examples
# "Module".constantize # => Module
# "Class".constantize # => Class
# "blargle".safe_constantize # => NameError: wrong constant name blargle
# "Module".constantize # => Module
# "Class".constantize # => Class
# "blargle".constantize # => NameError: wrong constant name blargle
def constantize
ActiveSupport::Inflector.constantize(self)
end