aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authoryui-knk <spiketeika@gmail.com>2015-02-13 13:56:48 +0900
committeryui-knk <spiketeika@gmail.com>2015-02-13 13:56:48 +0900
commit6b4c5aeb35471d43122a829c88662b6886d9171a (patch)
tree08454e690404b49c73a1b644f8f134d0318e3f01 /guides
parentb03b09dc8660e26ed23a851ebda2bcbcb47d7d0a (diff)
downloadrails-6b4c5aeb35471d43122a829c88662b6886d9171a.tar.gz
rails-6b4c5aeb35471d43122a829c88662b6886d9171a.tar.bz2
rails-6b4c5aeb35471d43122a829c88662b6886d9171a.zip
[ci skip] escape under score
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 80000baf66..f68179841e 100644
--- a/guides/source/action_controller_overview.md
+++ b/guides/source/action_controller_overview.md
@@ -737,7 +737,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, and the `require_login` filter from above could be rewritten to use a block:
```ruby
class ApplicationController < ActionController::Base