diff options
author | Siddharth Bhatore <sbhatore95@gmail.com> | 2015-04-22 13:39:38 +0530 |
---|---|---|
committer | Siddharth Bhatore <sbhatore95@gmail.com> | 2015-04-22 13:39:38 +0530 |
commit | 8f131a9ed5549cdc8969aef9bd2a264809a36ba8 (patch) | |
tree | 7a87875cc167121f4a608c5573dd3b624a820eb2 | |
parent | 9a1fa3e8f8bcc98635c3ab6a16b59874f32d77fb (diff) | |
download | rails-8f131a9ed5549cdc8969aef9bd2a264809a36ba8.tar.gz rails-8f131a9ed5549cdc8969aef9bd2a264809a36ba8.tar.bz2 rails-8f131a9ed5549cdc8969aef9bd2a264809a36ba8.zip |
[ci skip] UpgradeLegacySignedCookieJar Doc fix
-rw-r--r-- | actionpack/lib/action_dispatch/middleware/cookies.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_dispatch/middleware/cookies.rb b/actionpack/lib/action_dispatch/middleware/cookies.rb index b7687ca100..b1f0f5fc28 100644 --- a/actionpack/lib/action_dispatch/middleware/cookies.rb +++ b/actionpack/lib/action_dispatch/middleware/cookies.rb @@ -482,8 +482,8 @@ module ActionDispatch # UpgradeLegacySignedCookieJar is used instead of SignedCookieJar if # secrets.secret_token and secrets.secret_key_base are both set. It reads - # legacy cookies signed with the old dummy key generator and re-saves - # them using the new key generator to provide a smooth upgrade path. + # legacy cookies signed with the old dummy key generator and signs and + # re-saves them using the new key generator to provide a smooth upgrade path. class UpgradeLegacySignedCookieJar < SignedCookieJar #:nodoc: include VerifyAndUpgradeLegacySignedMessage |