diff options
author | yui-knk <spiketeika@gmail.com> | 2015-04-10 13:54:25 +0900 |
---|---|---|
committer | yui-knk <spiketeika@gmail.com> | 2015-04-10 13:54:25 +0900 |
commit | fdcc71d0146575a6387bb5cc4380eda1072dd435 (patch) | |
tree | a2d1735a4e56c0c9015a6049bf96721068d9c6bc /guides | |
parent | c1a1c58a93305e3fe46d1fa9c1eea73b899449c0 (diff) | |
download | rails-fdcc71d0146575a6387bb5cc4380eda1072dd435.tar.gz rails-fdcc71d0146575a6387bb5cc4380eda1072dd435.tar.bz2 rails-fdcc71d0146575a6387bb5cc4380eda1072dd435.zip |
[ci skip] Wrap with double quotation
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/action_controller_overview.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_controller_overview.md b/guides/source/action_controller_overview.md index 8c1551f4a1..65dbb070fa 100644 --- a/guides/source/action_controller_overview.md +++ b/guides/source/action_controller_overview.md @@ -667,7 +667,7 @@ You may notice in the above code that we're using `render xml: @users`, not `ren Filters ------- -Filters are methods that are run before, after or "around" a controller action. +Filters are methods that are run "before", "after" or "around" a controller action. Filters are inherited, so if you set a filter on `ApplicationController`, it will be run on every controller in your application. |