diff options
author | Andreas Loupasakis <alup@aloop.org> | 2012-09-06 00:46:52 +0300 |
---|---|---|
committer | Andreas Loupasakis <alup@aloop.org> | 2012-09-06 00:46:52 +0300 |
commit | 2c96638c70e98058bee29c9f8b9d1d181b9dce9e (patch) | |
tree | 44e959bd7c84388584748c99c803a896fb9d33e4 /activerecord/lib | |
parent | 75857d0f80f4066f0d794e214b64539f0138532d (diff) | |
download | rails-2c96638c70e98058bee29c9f8b9d1d181b9dce9e.tar.gz rails-2c96638c70e98058bee29c9f8b9d1d181b9dce9e.tar.bz2 rails-2c96638c70e98058bee29c9f8b9d1d181b9dce9e.zip |
Fix a typo
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb b/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb index 7a3d9bfd3e..bf08459b3b 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb @@ -494,7 +494,7 @@ module ActiveRecord # # Normally there is only a single ConnectionHandler instance, accessible via # ActiveRecord::Base.connection_handler. Active Record models use this to - # determine that connection pool that they should use. + # determine the connection pool that they should use. class ConnectionHandler def initialize @owner_to_pool = Hash.new { |h,k| h[k] = {} } |