diff options
author | Emilio Tagua <miloops@gmail.com> | 2010-11-18 11:05:10 -0300 |
---|---|---|
committer | Emilio Tagua <miloops@gmail.com> | 2010-11-19 19:08:59 -0300 |
commit | b626f3e1ec033ef69ff7aeee1c11297079824db5 (patch) | |
tree | 90c864a098799d903b634e53cb2f9856761f4d75 | |
parent | 1c88d59891d11bd60a07f35a15c0043e0f8cf28a (diff) | |
download | rails-b626f3e1ec033ef69ff7aeee1c11297079824db5.tar.gz rails-b626f3e1ec033ef69ff7aeee1c11297079824db5.tar.bz2 rails-b626f3e1ec033ef69ff7aeee1c11297079824db5.zip |
IM is disabled by default.
-rw-r--r-- | activerecord/lib/active_record/identity_map.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/identity_map.rb b/activerecord/lib/active_record/identity_map.rb index 5ebe98c5b2..47ba3acf32 100644 --- a/activerecord/lib/active_record/identity_map.rb +++ b/activerecord/lib/active_record/identity_map.rb @@ -9,10 +9,10 @@ module ActiveRecord # # == Configuration # - # In order to disable IdentityMap, set <tt>config.active_record.identity_map = false</tt> + # In order to enable IdentityMap, set <tt>config.active_record.identity_map = true</tt> # in your <tt>config/application.rb</tt> file. # - # IdentityMap is enabled by default. + # IdentityMap is disabled by default. # module IdentityMap extend ActiveSupport::Concern |