diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2012-06-22 22:14:29 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2012-06-22 22:14:29 +0530 |
commit | 6285675db1cf983ba6c15442aedb457c8041f5ee (patch) | |
tree | d3fa66d3bc136f2dd90eeb17c0a463139e7a9f6c /activesupport/lib/active_support/deprecation | |
parent | 741cb5b12b87f0405d421c82f04cd86eba6c613b (diff) | |
download | rails-6285675db1cf983ba6c15442aedb457c8041f5ee.tar.gz rails-6285675db1cf983ba6c15442aedb457c8041f5ee.tar.bz2 rails-6285675db1cf983ba6c15442aedb457c8041f5ee.zip |
fixes a few mistakes in api docs [ci skip]
Diffstat (limited to 'activesupport/lib/active_support/deprecation')
-rw-r--r-- | activesupport/lib/active_support/deprecation/reporting.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/deprecation/reporting.rb b/activesupport/lib/active_support/deprecation/reporting.rb index 0529da342f..a1e9618084 100644 --- a/activesupport/lib/active_support/deprecation/reporting.rb +++ b/activesupport/lib/active_support/deprecation/reporting.rb @@ -20,7 +20,7 @@ module ActiveSupport # ActiveSupport::Deprecation.warn("something broke!") # # => "DEPRECATION WARNING: something broke! (called from your_code.rb:1)" # - # Activesupport::Deprecation.silence do + # ActiveSupport::Deprecation.silence do # ActiveSupport::Deprecation.warn("something broke!") # end # # => nil |