From 1b534a4d102510c2594db3ca95259612183c4089 Mon Sep 17 00:00:00 2001 From: Xavier Noria Date: Tue, 21 May 2024 14:24:28 +0200 Subject: [PATCH] ActiveRecord -> Active Record --- .../lib/active_record/connection_adapters/abstract_adapter.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb b/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb index 99ff21318b58a..1f87acac7ecdf 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb @@ -134,7 +134,7 @@ def initialize(config_or_deprecated_connection, deprecated_logger = nil, depreca @logger = ActiveRecord::Base.logger if deprecated_logger || deprecated_connection_options || deprecated_config - raise ArgumentError, "when initializing an ActiveRecord adapter with a config hash, that should be the only argument" + raise ArgumentError, "when initializing an Active Record adapter with a config hash, that should be the only argument" end else # Soft-deprecated for now; we'll probably warn in future.