aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authoryui-knk <spiketeika@gmail.com>2015-04-10 13:54:25 +0900
committeryui-knk <spiketeika@gmail.com>2015-04-10 13:54:25 +0900
commitfdcc71d0146575a6387bb5cc4380eda1072dd435 (patch)
treea2d1735a4e56c0c9015a6049bf96721068d9c6bc /guides
parentc1a1c58a93305e3fe46d1fa9c1eea73b899449c0 (diff)
downloadrails-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.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 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.