aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/backtrace_cleaner.rb
diff options
context:
space:
mode:
authorsuchasurge <frank@heidjer.info>2011-03-06 10:26:24 +0100
committersuchasurge <frank@heidjer.info>2011-03-06 10:26:24 +0100
commit9b96de6f3dfa31695c2fc27919e2989a98f6899d (patch)
tree4e3b9d6124af835355d7078de54c29921f392d3c /activesupport/lib/active_support/backtrace_cleaner.rb
parentac59a2a1d67aca74895ceddbc709a467c572144b (diff)
downloadrails-9b96de6f3dfa31695c2fc27919e2989a98f6899d.tar.gz
rails-9b96de6f3dfa31695c2fc27919e2989a98f6899d.tar.bz2
rails-9b96de6f3dfa31695c2fc27919e2989a98f6899d.zip
Some style changes
Diffstat (limited to 'activesupport/lib/active_support/backtrace_cleaner.rb')
-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 8465bc1e10..0e6bc30fa2 100644
--- a/activesupport/lib/active_support/backtrace_cleaner.rb
+++ b/activesupport/lib/active_support/backtrace_cleaner.rb
@@ -8,7 +8,7 @@ module ActiveSupport
# filter or modify the paths of any lines of the backtrace, you can call BacktraceCleaner#remove_filters! These two methods
# will give you a completely untouched backtrace.
#
- # Example:
+ # ==== Example:
#
# bc = BacktraceCleaner.new
# bc.add_filter { |line| line.gsub(Rails.root, '') }