aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-12-17 08:56:27 -0800
committerYves Senn <yves.senn@gmail.com>2013-12-17 08:56:27 -0800
commitbb0bc7a26f63250df00016024650caa669fc4df0 (patch)
tree8e128fda7fbcc864ed0139d362e90590c8dbda38 /activesupport
parentae196e85ee7169700afac2eecdc276bc06b10b8d (diff)
parent2003d0409e357c7be8a9380f479d8094efc47d31 (diff)
downloadrails-bb0bc7a26f63250df00016024650caa669fc4df0.tar.gz
rails-bb0bc7a26f63250df00016024650caa669fc4df0.tar.bz2
rails-bb0bc7a26f63250df00016024650caa669fc4df0.zip
Merge pull request #13346 from chancancode/release_notes_etc
Release notes fixes [ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/backtrace_cleaner.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/backtrace_cleaner.rb b/activesupport/lib/active_support/backtrace_cleaner.rb
index c88ae3e661..d58578b7bc 100644
--- a/activesupport/lib/active_support/backtrace_cleaner.rb
+++ b/activesupport/lib/active_support/backtrace_cleaner.rb
@@ -22,7 +22,7 @@ module ActiveSupport
# <tt>BacktraceCleaner#remove_silencers!</tt>, which will restore the
# backtrace to a pristine state. If you need to reconfigure an existing
# BacktraceCleaner so that it does not filter or modify the paths of any lines
- # of the backtrace, you can call <tt>BacktraceCleaner#remove_filters!<tt>
+ # of the backtrace, you can call <tt>BacktraceCleaner#remove_filters!</tt>
# These two methods will give you a completely untouched backtrace.
#
# Inspired by the Quiet Backtrace gem by Thoughtbot.