aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/configuring.md
diff options
context:
space:
mode:
authoramitkumarsuroliya <amitkumarsuroliya@gmail.com>2015-10-03 18:18:31 +0530
committeramitkumarsuroliya <amitkumarsuroliya@gmail.com>2015-10-03 18:19:32 +0530
commit208a33e38746203b01d70615935ff0d1ae3ade4a (patch)
tree36952273d5478effbdb57d7a2e47abc3dccc4eeb /guides/source/configuring.md
parent55ac94cec45328657c579024bb835fe18bb2d32b (diff)
downloadrails-208a33e38746203b01d70615935ff0d1ae3ade4a.tar.gz
rails-208a33e38746203b01d70615935ff0d1ae3ade4a.tar.bz2
rails-208a33e38746203b01d70615935ff0d1ae3ade4a.zip
Fixed deprecated string to specify the middleware [ci skip]
Diffstat (limited to 'guides/source/configuring.md')
-rw-r--r--guides/source/configuring.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md
index afdb0ba7eb..87114c4ef0 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -244,7 +244,7 @@ config.middleware.swap ActionController::Failsafe, Lifo::Failsafe
They can also be removed from the stack completely:
```ruby
-config.middleware.delete "Rack::MethodOverride"
+config.middleware.delete Rack::MethodOverride
```
### Configuring i18n