aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/4_2_release_notes.md
diff options
context:
space:
mode:
authorTamir Duberstein <tamird@squareup.com>2014-09-19 10:30:31 -0700
committerTamir Duberstein <tamird@squareup.com>2014-09-19 10:42:58 -0700
commit994d3ebe9bea5164a4383d408f9a0b6733ae2bc7 (patch)
tree7bf7f63836a42a54d5e3e6aa3dc9dd56ecbfe9d6 /guides/source/4_2_release_notes.md
parent620f4a4fc962c863b91a51876ffdf58f33bedb9c (diff)
downloadrails-994d3ebe9bea5164a4383d408f9a0b6733ae2bc7.tar.gz
rails-994d3ebe9bea5164a4383d408f9a0b6733ae2bc7.tar.bz2
rails-994d3ebe9bea5164a4383d408f9a0b6733ae2bc7.zip
Standardize on `Rails.application` [ci skip]
This seems to be the style settled on in most of the templates.
Diffstat (limited to 'guides/source/4_2_release_notes.md')
-rw-r--r--guides/source/4_2_release_notes.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/4_2_release_notes.md b/guides/source/4_2_release_notes.md
index 5aed0c9358..f3f6942135 100644
--- a/guides/source/4_2_release_notes.md
+++ b/guides/source/4_2_release_notes.md
@@ -322,7 +322,7 @@ Please refer to the [Changelog][railties] for detailed changes.
namespace: my_app_development
# config/production.rb
- MyApp::Application.configure do
+ Rails.application.configure do
config.middleware.use ExceptionNotifier, config_for(:exception_notification)
end
```