aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/middleware/session/cookie_store.rb
diff options
context:
space:
mode:
authorEileen M. Uchitelle <eileencodes@gmail.com>2016-02-15 08:39:37 -0500
committerEileen M. Uchitelle <eileencodes@gmail.com>2016-02-15 08:39:37 -0500
commit34eb13a0c65e00ea850b064b449fb5280fe357ef (patch)
tree2a32bbfc2ab57f7a800923161e84583639427404 /actionpack/lib/action_dispatch/middleware/session/cookie_store.rb
parent4feb34ddf291ac4985ea2403a0879b5839047074 (diff)
parent595c798c1763d7d2ee6939c5cf196ac31aef33da (diff)
downloadrails-34eb13a0c65e00ea850b064b449fb5280fe357ef.tar.gz
rails-34eb13a0c65e00ea850b064b449fb5280fe357ef.tar.bz2
rails-34eb13a0c65e00ea850b064b449fb5280fe357ef.zip
Merge pull request #23684 from vs4vijay/master
Corrected secret_key_base
Diffstat (limited to 'actionpack/lib/action_dispatch/middleware/session/cookie_store.rb')
-rw-r--r--actionpack/lib/action_dispatch/middleware/session/cookie_store.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/middleware/session/cookie_store.rb b/actionpack/lib/action_dispatch/middleware/session/cookie_store.rb
index 429a98f236..dec9c60ef2 100644
--- a/actionpack/lib/action_dispatch/middleware/session/cookie_store.rb
+++ b/actionpack/lib/action_dispatch/middleware/session/cookie_store.rb
@@ -23,7 +23,7 @@ module ActionDispatch
# goes a step further than signed cookies in that encrypted cookies cannot
# be altered or read by users. This is the default starting in Rails 4.
#
- # If you have both secret_token and secret_key base set, your cookies will
+ # If you have both secret_token and secret_key_base set, your cookies will
# be encrypted, and signed cookies generated by Rails 3 will be
# transparently read and encrypted to provide a smooth upgrade path.
#