aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/action_controller_overview.md
diff options
context:
space:
mode:
authorJoe Fiorini <joe@joefiorini.com>2012-04-05 00:53:10 -0400
committerJoe Fiorini <joe@joefiorini.com>2012-10-06 16:40:51 -0400
commit65a2977cdd55678d3eab06434625375914511786 (patch)
treeab2dbb879196f0879af1d4bce06480975492ff6e /guides/source/action_controller_overview.md
parent03bcd416b04c411973456e33a95756edab4244cd (diff)
downloadrails-65a2977cdd55678d3eab06434625375914511786.tar.gz
rails-65a2977cdd55678d3eab06434625375914511786.tar.bz2
rails-65a2977cdd55678d3eab06434625375914511786.zip
[Guides] Format content for small devices
Diffstat (limited to 'guides/source/action_controller_overview.md')
-rw-r--r--guides/source/action_controller_overview.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/action_controller_overview.md b/guides/source/action_controller_overview.md
index e6a6b05166..824ffb5d7a 100644
--- a/guides/source/action_controller_overview.md
+++ b/guides/source/action_controller_overview.md
@@ -174,8 +174,8 @@ Your application has a session for each user in which you can store small amount
* ActionDispatch::Session::CookieStore - Stores everything on the client.
* ActionDispatch::Session::CacheStore - Stores the data in the Rails cache.
-* ActionDispatch::Session::ActiveRecordStore - Stores the data in a database using Active Record. (require `activerecord-session_store` gem).
-* ActionDispatch::Session::MemCacheStore - Stores the data in a memcached cluster (this is a legacy implementation; consider using CacheStore instead).
+* @ActionDispatch::Session::ActiveRecordStore@ - Stores the data in a database using Active Record. (require `activerecord-session_store` gem).
+* @ActionDispatch::Session::MemCacheStore@ - Stores the data in a memcached cluster (this is a legacy implementation; consider using CacheStore instead).
All session stores use a cookie to store a unique ID for each session (you must use a cookie, Rails will not allow you to pass the session ID in the URL as this is less secure).