aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorMike Gaffney <mike.gaffney@asolutions.com>2009-01-29 17:15:29 -0600
committerMike Gaffney <mike.gaffney@asolutions.com>2009-01-29 17:15:29 -0600
commitbbef82664323363d327301a5cce3ed57ced1a6fa (patch)
treed97b89f9735a0b634a86a3b88c1041ba9f4c06b1 /railties
parent20d850dac78fc11512a6ad9f3d2ad397daac3e87 (diff)
downloadrails-bbef82664323363d327301a5cce3ed57ced1a6fa.tar.gz
rails-bbef82664323363d327301a5cce3ed57ced1a6fa.tar.bz2
rails-bbef82664323363d327301a5cce3ed57ced1a6fa.zip
changed you to your
Diffstat (limited to 'railties')
-rw-r--r--railties/doc/guides/source/2_3_release_notes.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/doc/guides/source/2_3_release_notes.txt b/railties/doc/guides/source/2_3_release_notes.txt
index 5a63e30567..08d591d149 100644
--- a/railties/doc/guides/source/2_3_release_notes.txt
+++ b/railties/doc/guides/source/2_3_release_notes.txt
@@ -29,7 +29,7 @@ Here's a summary of the rack-related changes:
* +CGI::Session::CookieStore+ has been replaced by +ActionController::Session::CookieStore+
* +CGI::Session::MemCacheStore+ has been replaced by +ActionController::Session::MemCacheStore+
* +CGI::Session::ActiveRecordStore+ has been replaced by +ActiveRecord::SessionStore+
-* You can still change you session store with +ActionController::Base.session_store = :active_record_store+
+* You can still change your session store with +ActionController::Base.session_store = :active_record_store+
* Default sessions options are still set with +ActionController::Base.session = { :key => "..." }+
* The mutex that normally wraps your entire request has been moved into middleware, +ActionController::Lock+
* +ActionController::AbstractRequest+ and +ActionController::Request+ have been unified. The new +ActionController::Request+ inherits from +Rack::Request+. This affects access to +response.headers['type']+ in test requests. Use +response.content_type+ instead.