Skip to content

Commit d9212f6

Browse files
committed
[ci skip] Fix action_controller_overview
1 parent fd495a8 commit d9212f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

guides/source/action_controller_overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -738,7 +738,7 @@ You can choose not to yield and build the response yourself, in which case the a
738738

739739
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.
740740

741-
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:
741+
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:
742742

743743
```ruby
744744
class ApplicationController < ActionController::Base

0 commit comments

Comments
 (0)