diff options
author | Santosh Wadghule <santosh.wadghule@gmail.com> | 2014-05-11 01:14:39 +0530 |
---|---|---|
committer | Santosh Wadghule <santosh.wadghule@gmail.com> | 2014-05-11 01:18:48 +0530 |
commit | de0d4d795d05a6787014bf5967b2102bda51f8ff (patch) | |
tree | a2a89ed4cf704d36cebab24fe5e98855da61c055 /activesupport | |
parent | 35864db96132a820ce1c4a67dbac5e656a5b8489 (diff) | |
download | rails-de0d4d795d05a6787014bf5967b2102bda51f8ff.tar.gz rails-de0d4d795d05a6787014bf5967b2102bda51f8ff.tar.bz2 rails-de0d4d795d05a6787014bf5967b2102bda51f8ff.zip |
Keep method's description/documentation consistent [ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/backtrace_cleaner.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/lib/active_support/backtrace_cleaner.rb b/activesupport/lib/active_support/backtrace_cleaner.rb index d58578b7bc..1fec1bea0d 100644 --- a/activesupport/lib/active_support/backtrace_cleaner.rb +++ b/activesupport/lib/active_support/backtrace_cleaner.rb @@ -65,14 +65,14 @@ module ActiveSupport @silencers << block end - # Will remove all silencers, but leave in the filters. This is useful if - # your context of debugging suddenly expands as you suspect a bug in one of + # Removes all silencers, but leaves in the filters. Useful if your + # context of debugging suddenly expands as you suspect a bug in one of # the libraries you use. def remove_silencers! @silencers = [] end - # Removes all filters, but leaves in silencers. Useful if you suddenly + # Removes all filters, but leaves in the silencers. Useful if you suddenly # need to see entire filepaths in the backtrace that you had already # filtered out. def remove_filters! |