aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2015-02-13 08:36:44 +0100
committerYves Senn <yves.senn@gmail.com>2015-02-13 08:36:44 +0100
commit9e30346b3a225c8b717ed7cf95ba17aacd211c26 (patch)
treed51fc5e03db90582948527b6de3176bf301c9bb0 /guides/source
parent1ca13b47da46247345a0d4547edc495f0cc83bf6 (diff)
parent6b4c5aeb35471d43122a829c88662b6886d9171a (diff)
downloadrails-9e30346b3a225c8b717ed7cf95ba17aacd211c26.tar.gz
rails-9e30346b3a225c8b717ed7cf95ba17aacd211c26.tar.bz2
rails-9e30346b3a225c8b717ed7cf95ba17aacd211c26.zip
Merge pull request #18922 from yui-knk/fix/action_controller_overview
[ci skip] escape under score
Diffstat (limited to 'guides/source')
-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