aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/has_many_association.rb
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-07-22 09:57:51 +0300
committerYves Senn <yves.senn@gmail.com>2013-07-22 09:57:51 +0300
commitff3739e6d5da61cf49e4f4a1d281b289f6222f9a (patch)
tree2397c5140ee042726aa69de70dbf6a44928e5e97 /activerecord/lib/active_record/associations/has_many_association.rb
parentc43db5564a48bc41ae55cead400af066337e63b6 (diff)
downloadrails-ff3739e6d5da61cf49e4f4a1d281b289f6222f9a.tar.gz
rails-ff3739e6d5da61cf49e4f4a1d281b289f6222f9a.tar.bz2
rails-ff3739e6d5da61cf49e4f4a1d281b289f6222f9a.zip
Revert "Merge pull request #11416 from tigrish/master"
This reverts commit 9dc8aef084fc5ae7e3a396dd098d89da93d06fda, reversing changes made to 02e8dae6279ea25312293a3eca777faf35139c4c.
Diffstat (limited to 'activerecord/lib/active_record/associations/has_many_association.rb')
-rw-r--r--activerecord/lib/active_record/associations/has_many_association.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations/has_many_association.rb b/activerecord/lib/active_record/associations/has_many_association.rb
index 6e722616bf..607ed0da46 100644
--- a/activerecord/lib/active_record/associations/has_many_association.rb
+++ b/activerecord/lib/active_record/associations/has_many_association.rb
@@ -15,7 +15,7 @@ module ActiveRecord
when :restrict_with_error
unless empty?
record = klass.human_attribute_name(reflection.name).downcase
- owner.errors.add(:base, :"restrict_dependent_destroy.has_many", record: record)
+ owner.errors.add(:base, :"restrict_dependent_destroy.many", record: record)
false
end