diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2017-10-09 09:20:42 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-09 09:20:42 +0900 |
commit | 3d5f5c447f1787aa9044bf6b869828aaea15b1bf (patch) | |
tree | 519a0c8318c172105cd37fc3a76738caea35b520 | |
parent | 5fb282239d8ece0eb14121eecfd5446d7aa70343 (diff) | |
parent | e50d4c9dedc75835c17211f337c0c08d2a5f58a0 (diff) | |
download | rails-3d5f5c447f1787aa9044bf6b869828aaea15b1bf.tar.gz rails-3d5f5c447f1787aa9044bf6b869828aaea15b1bf.tar.bz2 rails-3d5f5c447f1787aa9044bf6b869828aaea15b1bf.zip |
Merge pull request #30837 from y-yagi/fix_typo_in_loading_error
Fix typo in loading error message
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/connection_specification.rb | 2 |
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 |