aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb
diff options
context:
space:
mode:
authorTobias Fankhänel <tfankhaenel@codevise.de>2017-04-25 16:52:44 +0200
committerTobias Fankhänel <tfankhaenel@codevise.de>2017-04-25 17:01:44 +0200
commite5e3daf7e2cafbfd6d41eae29752d0a0e4429052 (patch)
treeaa9bea124680800f66f30c98cf85a6c152b7b230 /activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb
parentc2e3e0d2096836bfb6072af70bd0914a960a50fe (diff)
downloadrails-e5e3daf7e2cafbfd6d41eae29752d0a0e4429052.tar.gz
rails-e5e3daf7e2cafbfd6d41eae29752d0a0e4429052.tar.bz2
rails-e5e3daf7e2cafbfd6d41eae29752d0a0e4429052.zip
Fix typos [ci skip]
'lookup' is the noun. 'to look up' is the verb. Looked it up just to be sure. cf. https://en.wiktionary.org/wiki/lookup https://en.wiktionary.org/wiki/look_up
Diffstat (limited to 'activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb')
-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).