diff options
author | Jon Moss <maclover7@users.noreply.github.com> | 2016-09-24 14:52:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-24 14:52:38 -0400 |
commit | f08a2834732eb64f1f5cb2c4c8528b3305ae1054 (patch) | |
tree | b42ea2fdd209873d9982271c2ca9484c4f95e8a7 | |
parent | bb3bc4755cb6e09e80806011d0ceb2a2ca237e4e (diff) | |
parent | c3fe596a4a9686474ee479703e792183407a2f9f (diff) | |
download | rails-f08a2834732eb64f1f5cb2c4c8528b3305ae1054.tar.gz rails-f08a2834732eb64f1f5cb2c4c8528b3305ae1054.tar.bz2 rails-f08a2834732eb64f1f5cb2c4c8528b3305ae1054.zip |
Merge pull request #26610 from mechanicles/as-to-active-support
AS => Active Support [ci skip]
-rw-r--r-- | railties/lib/rails.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails.rb b/railties/lib/rails.rb index e9c96c7b43..5d862e3fec 100644 --- a/railties/lib/rails.rb +++ b/railties/lib/rails.rb @@ -46,7 +46,7 @@ module Rails def backtrace_cleaner @backtrace_cleaner ||= begin - # Relies on Active Support, so we have to lazy load to postpone definition until AS has been loaded + # Relies on Active Support, so we have to lazy load to postpone definition until Active Support has been loaded require "rails/backtrace_cleaner" Rails::BacktraceCleaner.new end |