aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2017-04-25 21:01:52 +0530
committerGitHub <noreply@github.com>2017-04-25 21:01:52 +0530
commitb32d64df5e5160e25804c7019e2da76bd115f3a6 (patch)
treeaa9bea124680800f66f30c98cf85a6c152b7b230 /activerecord/lib
parentc2e3e0d2096836bfb6072af70bd0914a960a50fe (diff)
parente5e3daf7e2cafbfd6d41eae29752d0a0e4429052 (diff)
downloadrails-b32d64df5e5160e25804c7019e2da76bd115f3a6.tar.gz
rails-b32d64df5e5160e25804c7019e2da76bd115f3a6.tar.bz2
rails-b32d64df5e5160e25804c7019e2da76bd115f3a6.zip
Merge pull request #28873 from aviav/typos
Fix typos [ci skip]
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb4
1 files changed, 2 insertions, 2 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 53dbbd8c21..177b253645 100644
--- a/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb
+++ b/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb
@@ -857,9 +857,9 @@ module ActiveRecord
# All Active Record models use this handler to determine the connection pool that they
# should use.
#
- # The ConnectionHandler class is not coupled with the Active models, as it has no knowlodge
+ # The ConnectionHandler class is not coupled with the Active models, as it has no knowledge
# about the model. The model needs to pass a specification name to the handler,
- # in order to lookup the correct connection pool.
+ # in order to look up the correct connection pool.
class ConnectionHandler
def initialize
# These caches are keyed by spec.name (ConnectionSpecification#name).