aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/middleware/session
diff options
context:
space:
mode:
authoreileencodes <eileencodes@gmail.com>2015-09-09 08:46:20 -0400
committereileencodes <eileencodes@gmail.com>2015-09-09 09:04:55 -0400
commitb3ab44f6cb03e0e7a59bb6f8562ae5fa21bfed44 (patch)
treea611f8478f91b434f565caa3d70b7fc4ea232b68 /actionpack/lib/action_dispatch/middleware/session
parent43d7a03aef737787d4166fe347f40d901f6334c3 (diff)
downloadrails-b3ab44f6cb03e0e7a59bb6f8562ae5fa21bfed44.tar.gz
rails-b3ab44f6cb03e0e7a59bb6f8562ae5fa21bfed44.tar.bz2
rails-b3ab44f6cb03e0e7a59bb6f8562ae5fa21bfed44.zip
Update documentation to reflect Rack::Session::Abstract changes
`Rack::Session::Abstract::ID` is now deprecated and `Rack::Session::Abstract::Persisted` should be used instead.
Diffstat (limited to 'actionpack/lib/action_dispatch/middleware/session')
-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 3f7011d100..02b6cfe727 100644
--- a/actionpack/lib/action_dispatch/middleware/session/cookie_store.rb
+++ b/actionpack/lib/action_dispatch/middleware/session/cookie_store.rb
@@ -53,7 +53,7 @@ module ActionDispatch
#
# Note that changing the secret key will invalidate all existing sessions!
#
- # Because CookieStore extends Rack::Session::Abstract::ID, many of the
+ # Because CookieStore extends Rack::Session::Abstract::Persisted, many of the
# options described there can be used to customize the session cookie that
# is generated. For example:
#