aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/backtrace_cleaner.rb
diff options
context:
space:
mode:
authorSantosh Wadghule <santosh.wadghule@gmail.com>2014-05-11 01:14:39 +0530
committerSantosh Wadghule <santosh.wadghule@gmail.com>2014-05-11 01:18:48 +0530
commitde0d4d795d05a6787014bf5967b2102bda51f8ff (patch)
treea2a89ed4cf704d36cebab24fe5e98855da61c055 /activesupport/lib/active_support/backtrace_cleaner.rb
parent35864db96132a820ce1c4a67dbac5e656a5b8489 (diff)
downloadrails-de0d4d795d05a6787014bf5967b2102bda51f8ff.tar.gz
rails-de0d4d795d05a6787014bf5967b2102bda51f8ff.tar.bz2
rails-de0d4d795d05a6787014bf5967b2102bda51f8ff.zip
Keep method's description/documentation consistent [ci skip]
Diffstat (limited to 'activesupport/lib/active_support/backtrace_cleaner.rb')
-rw-r--r--activesupport/lib/active_support/backtrace_cleaner.rb6
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!