aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/attribute_assignment.rb
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2012-08-13 00:41:04 -0500
committerGuillermo Iguaran <guilleiguaran@gmail.com>2012-09-16 23:58:21 -0500
commit1fa4f9243d09b3872a110c1057a828a753822728 (patch)
tree9915b652a1bb4ec6bc72b40e44d10c2d1653009a /activerecord/lib/active_record/attribute_assignment.rb
parent4b608c009e155d79532a00b97ac0ec524d7ad849 (diff)
downloadrails-1fa4f9243d09b3872a110c1057a828a753822728.tar.gz
rails-1fa4f9243d09b3872a110c1057a828a753822728.tar.bz2
rails-1fa4f9243d09b3872a110c1057a828a753822728.zip
Rename ForbiddenAttributes exception to ForbiddenAttributesError
Diffstat (limited to 'activerecord/lib/active_record/attribute_assignment.rb')
-rw-r--r--activerecord/lib/active_record/attribute_assignment.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/attribute_assignment.rb b/activerecord/lib/active_record/attribute_assignment.rb
index 9e45a83fcf..c30443f7a8 100644
--- a/activerecord/lib/active_record/attribute_assignment.rb
+++ b/activerecord/lib/active_record/attribute_assignment.rb
@@ -7,7 +7,7 @@ module ActiveRecord
# matching the attribute names (which again matches the column names).
#
# If the passed hash responds to permitted? method and the return value
- # of this method is false an ActiveModel::ForbiddenAttributes exception
+ # of this method is false an ActiveModel::ForbiddenAttributesError exception
# is raised.
def attributes=(new_attributes)
return unless new_attributes.is_a?(Hash)