aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/session_store.rb
diff options
context:
space:
mode:
authorBenjamin Quorning <beq@crd.dk>2010-07-09 15:58:58 +0200
committerBenjamin Quorning <beq@crd.dk>2010-07-13 13:00:21 +0200
commit7e075e62479a0eccad6eaf7a7c20f45347860c83 (patch)
tree20db09dc8d8f74ef1fd1aa2e7077f28c584a4dcd /activerecord/lib/active_record/session_store.rb
parent4209cb97e39c2742410f81d86e7f7c5ad310a251 (diff)
downloadrails-7e075e62479a0eccad6eaf7a7c20f45347860c83.tar.gz
rails-7e075e62479a0eccad6eaf7a7c20f45347860c83.tar.bz2
rails-7e075e62479a0eccad6eaf7a7c20f45347860c83.zip
Fixed many references to the old config/environment.rb and Rails::Initializer
Diffstat (limited to 'activerecord/lib/active_record/session_store.rb')
-rw-r--r--activerecord/lib/active_record/session_store.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/session_store.rb b/activerecord/lib/active_record/session_store.rb
index b88d550086..df2f429c5d 100644
--- a/activerecord/lib/active_record/session_store.rb
+++ b/activerecord/lib/active_record/session_store.rb
@@ -16,7 +16,7 @@ module ActiveRecord
# ActionController::SessionOverflowError will be raised.
#
# You may configure the table name, primary key, and data column.
- # For example, at the end of <tt>config/environment.rb</tt>:
+ # For example, at the end of <tt>config/application.rb</tt>:
#
# ActiveRecord::SessionStore::Session.table_name = 'legacy_session_table'
# ActiveRecord::SessionStore::Session.primary_key = 'session_id'