diff options
author | Alex Kitchens <akitchens@financialpayments.com> | 2016-06-20 08:49:59 -0500 |
---|---|---|
committer | Alex Kitchens <akitchens@financialpayments.com> | 2016-06-20 08:49:59 -0500 |
commit | 33c78c3787bbad534e08e8f3be53a6c971a8e339 (patch) | |
tree | 76b65239ea59bcc299a5e5739762f85ecedb742d /activerecord/lib/active_record | |
parent | 0c998a14c45430afe85188f8ad13a696b077ffd9 (diff) | |
download | rails-33c78c3787bbad534e08e8f3be53a6c971a8e339.tar.gz rails-33c78c3787bbad534e08e8f3be53a6c971a8e339.tar.bz2 rails-33c78c3787bbad534e08e8f3be53a6c971a8e339.zip |
[ci skip] fix typo in ActiveRecord::ConnectionHandling
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r-- | activerecord/lib/active_record/connection_handling.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_handling.rb b/activerecord/lib/active_record/connection_handling.rb index 086c678af5..99fdef67d0 100644 --- a/activerecord/lib/active_record/connection_handling.rb +++ b/activerecord/lib/active_record/connection_handling.rb @@ -131,7 +131,7 @@ module ActiveRecord def remove_connection(name = nil) name ||= @connection_specification_name if defined?(@connection_specification_name) - # if removing a connection that have a pool, we reset the + # if removing a connection that has a pool, we reset the # connection_specification_name so it will use the parent # pool. if connection_handler.retrieve_connection_pool(name) |