diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-04-16 00:35:58 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-04-16 00:35:58 -0300 |
commit | 3f04785f77899b286d02a0a95dd7fbfc341dc999 (patch) | |
tree | a3bf26899ee4524aad29bc74088a4285230de3d6 /activesupport | |
parent | e1be06822386864a74710ba417828a1c6580b440 (diff) | |
download | rails-3f04785f77899b286d02a0a95dd7fbfc341dc999.tar.gz rails-3f04785f77899b286d02a0a95dd7fbfc341dc999.tar.bz2 rails-3f04785f77899b286d02a0a95dd7fbfc341dc999.zip |
Fix documentation to the custom Deprecator
[ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/core_ext/module/deprecation.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/module/deprecation.rb b/activesupport/lib/active_support/core_ext/module/deprecation.rb index cc45cee5b8..53f8ea3bad 100644 --- a/activesupport/lib/active_support/core_ext/module/deprecation.rb +++ b/activesupport/lib/active_support/core_ext/module/deprecation.rb @@ -15,7 +15,7 @@ class Module # # class MyLib::Deprecator # def deprecation_warning(deprecated_method_name, message, caller_backtrace) - # message = "#{method_name} is deprecated and will be removed from MyLibrary | #{message}" + # message = "#{deprecated_method_name} is deprecated and will be removed from MyLibrary | #{message}" # Kernel.warn message # end # end |