aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorSandeep Navghane <grayghost.2003@gmail.com>2016-03-15 13:49:40 +0530
committerSandeep Navghane <grayghost.2003@gmail.com>2016-03-15 13:49:40 +0530
commit3c688c737bb08774104d13b3b89f3a25eb3cd440 (patch)
treedcd583c741f5db2f4e426d6e34a5db6c598aef83 /guides
parentf735d4103869347329bb3dc38c44519ff28b9cb6 (diff)
downloadrails-3c688c737bb08774104d13b3b89f3a25eb3cd440.tar.gz
rails-3c688c737bb08774104d13b3b89f3a25eb3cd440.tar.bz2
rails-3c688c737bb08774104d13b3b89f3a25eb3cd440.zip
Update action_controller_overview.md
Diffstat (limited to 'guides')
-rw-r--r--guides/source/action_controller_overview.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_controller_overview.md b/guides/source/action_controller_overview.md
index 9ef2c1a441..8997363fce 100644
--- a/guides/source/action_controller_overview.md
+++ b/guides/source/action_controller_overview.md
@@ -700,7 +700,7 @@ class LoginsController < ApplicationController
end
```
-Now, the `LoginsController`'s `new` and `create` actions will work as before without requiring the user to be logged in. The `:only` option is used to only skip this filter for these actions, and there is also an `:except` option which works the other way. These options can be used when adding filters too, so you can add a filter which only runs for selected actions in the first place.
+Now, the `LoginsController`'s `new` and `create` actions will work as before without requiring the user to be logged in. The `:only` option is used to skip this filter only for these actions, and there is also an `:except` option which works the other way. These options can be used when adding filters too, so you can add a filter which only runs for selected actions in the first place.
### After Filters and Around Filters