From 60b6f546a613816b881902d9edafe54d0cde9695 Mon Sep 17 00:00:00 2001 From: Junya Ogura Date: Thu, 21 Jul 2016 23:42:45 +0900 Subject: Fix incorrect indentation in method comment [ci skip] --- .../lib/action_controller/metal/request_forgery_protection.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'actionpack/lib/action_controller/metal/request_forgery_protection.rb') diff --git a/actionpack/lib/action_controller/metal/request_forgery_protection.rb b/actionpack/lib/action_controller/metal/request_forgery_protection.rb index 0559fbc6ce..fd7ffcfcd7 100644 --- a/actionpack/lib/action_controller/metal/request_forgery_protection.rb +++ b/actionpack/lib/action_controller/metal/request_forgery_protection.rb @@ -109,10 +109,10 @@ module ActionController #:nodoc: # * :only/:except - Only apply forgery protection to a subset of actions. For example only: [ :create, :create_all ]. # * :if/:unless - Turn off the forgery protection entirely depending on the passed Proc or method reference. # * :prepend - By default, the verification of the authentication token will be added at the position of the - # protect_from_forgery call in your application. This means any callbacks added before are run first. This is useful - # when you want your forgery protection to depend on other callbacks, like authentication methods (Oauth vs Cookie auth). + # protect_from_forgery call in your application. This means any callbacks added before are run first. This is useful + # when you want your forgery protection to depend on other callbacks, like authentication methods (Oauth vs Cookie auth). # - # If you need to add verification to the beginning of the callback chain, use prepend: true. + # If you need to add verification to the beginning of the callback chain, use prepend: true. # * :with - Set the method to handle unverified request. # # Valid unverified request handling methods are: -- cgit v1.2.3