diff options
author | José Valim <jose.valim@gmail.com> | 2011-09-23 10:30:15 -0700 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2011-09-23 10:30:15 -0700 |
commit | 8bde477e9d9753702cdc6053331e121f4885fd64 (patch) | |
tree | 719f10e3be580544fddae6a311463c20ccf5e1a1 /activesupport/lib | |
parent | 5dcb269eb8c8730084734e845534d3b9580c40f4 (diff) | |
parent | 06634f44d0fd106a49d4f7a63bcb1532006e3742 (diff) | |
download | rails-8bde477e9d9753702cdc6053331e121f4885fd64.tar.gz rails-8bde477e9d9753702cdc6053331e121f4885fd64.tar.bz2 rails-8bde477e9d9753702cdc6053331e121f4885fd64.zip |
Merge pull request #3114 from zenprogrammer/fix_constantize_doc
Minor doc fix to String#constantize
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/core_ext/string/inflections.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/lib/active_support/core_ext/string/inflections.rb b/activesupport/lib/active_support/core_ext/string/inflections.rb index b4218cb42c..c7ceeb9de4 100644 --- a/activesupport/lib/active_support/core_ext/string/inflections.rb +++ b/activesupport/lib/active_support/core_ext/string/inflections.rb @@ -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 |