diff options
author | Hendy Tanata <htanata@gmail.com> | 2015-04-27 18:43:59 -0700 |
---|---|---|
committer | Hendy Tanata <htanata@gmail.com> | 2015-04-27 18:45:25 -0700 |
commit | 1b61fb44e4e7d373cd63a51e04e683df77263f09 (patch) | |
tree | f2e48edf0ebc2adce8aa2e633d247b6907d160f9 /actionpack/lib | |
parent | 3379ebc27057e72a7d18dff9929c288d5f884652 (diff) | |
download | rails-1b61fb44e4e7d373cd63a51e04e683df77263f09.tar.gz rails-1b61fb44e4e7d373cd63a51e04e683df77263f09.tar.bz2 rails-1b61fb44e4e7d373cd63a51e04e683df77263f09.zip |
Add missing "of" to RequestForgeryProtection doc.
[ci skip]
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_controller/metal/request_forgery_protection.rb | 2 |
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 663a969f72..bc0e0089d0 100644 --- a/actionpack/lib/action_controller/metal/request_forgery_protection.rb +++ b/actionpack/lib/action_controller/metal/request_forgery_protection.rb @@ -19,7 +19,7 @@ module ActionController #:nodoc: # # Since HTML and Javascript requests are typically made from the browser, we # need to ensure to verify request authenticity for the web browser. We can - # use session-oriented authentication for these types requests, by using + # use session-oriented authentication for these types of requests, by using # the `protect_form_forgery` method in our controllers. # # GET requests are not protected since they don't have side effects like writing |