diff options
author | Abdelkader Boudih <terminale@gmail.com> | 2015-03-05 11:12:31 +0000 |
---|---|---|
committer | Abdelkader Boudih <terminale@gmail.com> | 2015-03-05 11:12:31 +0000 |
commit | 5d8090e74db76b77e8ea9216d02274b6ff4aec9f (patch) | |
tree | 7a37cdb8104e2c9143c0e04c63c017b753276f1d /actionpack/lib/action_controller | |
parent | dea2aafbfa5f63bf99f21244309a6fe75e5de906 (diff) | |
parent | 72e5fde811fe902cf4b492805366a29e35aeaafe (diff) | |
download | rails-5d8090e74db76b77e8ea9216d02274b6ff4aec9f.tar.gz rails-5d8090e74db76b77e8ea9216d02274b6ff4aec9f.tar.bz2 rails-5d8090e74db76b77e8ea9216d02274b6ff4aec9f.zip |
Merge pull request #19210 from sivsushruth/doc_fix
Doc fix [ci skip]
Diffstat (limited to 'actionpack/lib/action_controller')
-rw-r--r-- | actionpack/lib/action_controller/metal/conditional_get.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/metal/conditional_get.rb b/actionpack/lib/action_controller/metal/conditional_get.rb index 858870d8b8..47bcfdb1e9 100644 --- a/actionpack/lib/action_controller/metal/conditional_get.rb +++ b/actionpack/lib/action_controller/metal/conditional_get.rb @@ -15,7 +15,7 @@ module ActionController module ClassMethods # Allows you to consider additional controller-wide information when generating an ETag. # For example, if you serve pages tailored depending on who's logged in at the moment, you - # may want to add the current user id to be part of the ETag to prevent authorized displaying + # may want to add the current user id to be part of the ETag to prevent unauthorized displaying # of cached pages. # # class InvoicesController < ApplicationController |