aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/metal
diff options
context:
space:
mode:
authoryui-knk <spiketeika@gmail.com>2015-05-25 20:36:14 +0900
committeryui-knk <spiketeika@gmail.com>2015-05-25 20:36:14 +0900
commit5bcee8760a6dd909a35c0f7b632928f243e5d60b (patch)
tree635b921fbe8998f24e6b5180984bf8a32ced9dbd /actionpack/lib/action_controller/metal
parent6df6134e7ce5e56a3dc83d8670dc137ea40a09ee (diff)
downloadrails-5bcee8760a6dd909a35c0f7b632928f243e5d60b.tar.gz
rails-5bcee8760a6dd909a35c0f7b632928f243e5d60b.tar.bz2
rails-5bcee8760a6dd909a35c0f7b632928f243e5d60b.zip
[ci skip] Upcase `is`
Diffstat (limited to 'actionpack/lib/action_controller/metal')
-rw-r--r--actionpack/lib/action_controller/metal/request_forgery_protection.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/metal/request_forgery_protection.rb b/actionpack/lib/action_controller/metal/request_forgery_protection.rb
index 356493bde6..c36b93c229 100644
--- a/actionpack/lib/action_controller/metal/request_forgery_protection.rb
+++ b/actionpack/lib/action_controller/metal/request_forgery_protection.rb
@@ -258,7 +258,7 @@ module ActionController #:nodoc:
# Returns true or false if a request is verified. Checks:
#
- # * is it a GET or HEAD request? Gets should be safe and idempotent
+ # * Is it a GET or HEAD request? Gets should be safe and idempotent
# * Does the form_authenticity_token match the given token value from the params?
# * Does the X-CSRF-Token header match the form_authenticity_token
def verified_request?