aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2017-10-09 08:52:34 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2017-10-09 08:53:29 +0900
commite50d4c9dedc75835c17211f337c0c08d2a5f58a0 (patch)
tree519a0c8318c172105cd37fc3a76738caea35b520 /activerecord
parent5fb282239d8ece0eb14121eecfd5446d7aa70343 (diff)
downloadrails-e50d4c9dedc75835c17211f337c0c08d2a5f58a0.tar.gz
rails-e50d4c9dedc75835c17211f337c0c08d2a5f58a0.tar.bz2
rails-e50d4c9dedc75835c17211f337c0c08d2a5f58a0.zip
Fix typo in loading error message
s/Action Record/Active Record/
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/connection_adapters/connection_specification.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/connection_specification.rb b/activerecord/lib/active_record/connection_adapters/connection_specification.rb
index e9bda1885b..508132accb 100644
--- a/activerecord/lib/active_record/connection_adapters/connection_specification.rb
+++ b/activerecord/lib/active_record/connection_adapters/connection_specification.rb
@@ -200,7 +200,7 @@ module ActiveRecord
# Bubbled up from the adapter require. Prefix the exception message
# with some guidance about how to address it and reraise.
else
- raise e.class, "Error loading the '#{spec[:adapter]}' Action Record adapter. Missing a gem it depends on? #{e.message}", e.backtrace
+ raise e.class, "Error loading the '#{spec[:adapter]}' Active Record adapter. Missing a gem it depends on? #{e.message}", e.backtrace
end
end