diff options
author | Evgeniy Dolzhenko <dolzenko@gmail.com> | 2010-06-11 14:15:34 +0400 |
---|---|---|
committer | Evgeniy Dolzhenko <dolzenko@gmail.com> | 2010-06-11 14:15:34 +0400 |
commit | ccf9577aee86ce1f766c5e8854e0c285dc38f8ac (patch) | |
tree | 7d7aae452ebfeb8ae30016ceffd0e8686bbf1b57 /actionpack/lib/action_controller/metal | |
parent | 2148e2cc943f17544f1288e742954fdaa8a92d62 (diff) | |
download | rails-ccf9577aee86ce1f766c5e8854e0c285dc38f8ac.tar.gz rails-ccf9577aee86ce1f766c5e8854e0c285dc38f8ac.tar.bz2 rails-ccf9577aee86ce1f766c5e8854e0c285dc38f8ac.zip |
Fix a bunch of minor spelling mistakes
Diffstat (limited to 'actionpack/lib/action_controller/metal')
-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 8c25b147ef..b632e7aab6 100644 --- a/actionpack/lib/action_controller/metal/request_forgery_protection.rb +++ b/actionpack/lib/action_controller/metal/request_forgery_protection.rb @@ -55,7 +55,7 @@ module ActionController #:nodoc: config_accessor :request_forgery_protection_token self.request_forgery_protection_token ||= :authenticity_token - # Controls whether request forgergy protection is turned on or not. Turned off by default only in test mode. + # Controls whether request forgery protection is turned on or not. Turned off by default only in test mode. config_accessor :allow_forgery_protection self.allow_forgery_protection = true if allow_forgery_protection.nil? |