diff options
author | yui-knk <spiketeika@gmail.com> | 2015-06-28 22:32:42 +0900 |
---|---|---|
committer | yui-knk <spiketeika@gmail.com> | 2015-06-28 22:32:42 +0900 |
commit | d9212f640863dc23cf86a89b37de7f278e9f9ba0 (patch) | |
tree | 0b324f7bc3aea16397f0549c35388a84a12a3893 /guides | |
parent | fd495a8d180b4fdeff55292f961e0b35071d42e3 (diff) | |
download | rails-d9212f640863dc23cf86a89b37de7f278e9f9ba0.tar.gz rails-d9212f640863dc23cf86a89b37de7f278e9f9ba0.tar.bz2 rails-d9212f640863dc23cf86a89b37de7f278e9f9ba0.zip |
[ci skip] Fix action_controller_overview
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 d506722f75..09fbdc0d32 100644 --- a/guides/source/action_controller_overview.md +++ b/guides/source/action_controller_overview.md @@ -738,7 +738,7 @@ You can choose not to yield and build the response yourself, in which case the a While the most common way to use filters is by creating private methods and using *_action to add them, there are two other ways to do the same thing. -The first is to use a block directly with the *\_action methods. The block receives the controller as an argument, and the `require_login` filter from above could be rewritten to use a block: +The first is to use a block directly with the *\_action methods. The block receives the controller as an argument. The `require_login` filter from above could be rewritten to use a block: ```ruby class ApplicationController < ActionController::Base |