aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/action_controller_overview.md
diff options
context:
space:
mode:
authorMikhail Dieterle <MikDiet@gmail.com>2013-01-01 22:06:28 +0300
committerMikhail Dieterle <MikDiet@gmail.com>2013-01-01 22:06:28 +0300
commitf23f8d1cbddbaaff750b2cdd21ed001269350adc (patch)
treeb30a944237556c5319b62f0a27076f6aac707029 /guides/source/action_controller_overview.md
parentffbcb09a4ee1d484edefe369b9509049af40f528 (diff)
downloadrails-f23f8d1cbddbaaff750b2cdd21ed001269350adc.tar.gz
rails-f23f8d1cbddbaaff750b2cdd21ed001269350adc.tar.bz2
rails-f23f8d1cbddbaaff750b2cdd21ed001269350adc.zip
a bit of inline code tags
Diffstat (limited to 'guides/source/action_controller_overview.md')
-rw-r--r--guides/source/action_controller_overview.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/guides/source/action_controller_overview.md b/guides/source/action_controller_overview.md
index 46ff9027fd..cca77a12a7 100644
--- a/guides/source/action_controller_overview.md
+++ b/guides/source/action_controller_overview.md
@@ -174,10 +174,10 @@ Session
Your application has a session for each user in which you can store small amounts of data that will be persisted between requests. The session is only available in the controller and the view and can use one of a number of different storage mechanisms:
-* 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::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).
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).