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

Minor doc fix to String#constantize

This commit is contained in:
Ryan Oblak 2011-09-23 10:21:34 -07:00
parent 5dcb269eb8
commit 06634f44d0

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