diff options
author | Xavier Noria <fxn@hashref.com> | 2013-04-25 19:58:23 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2013-04-25 19:58:23 +0200 |
commit | d495606168f638b272f5775b2a0a796f13ab7c1b (patch) | |
tree | 39da22fa0c634d298e7e1d3bade1edac2ef76396 /activerecord | |
parent | 288b56f550fb239352537b93f737cfd4b68ddb0f (diff) | |
download | rails-d495606168f638b272f5775b2a0a796f13ab7c1b.tar.gz rails-d495606168f638b272f5775b2a0a796f13ab7c1b.tar.bz2 rails-d495606168f638b272f5775b2a0a796f13ab7c1b.zip |
ActiveRecord -> Active Record
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/attribute_methods.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/attribute_methods.rb b/activerecord/lib/active_record/attribute_methods.rb index 818bb1a8a6..2fbab97133 100644 --- a/activerecord/lib/active_record/attribute_methods.rb +++ b/activerecord/lib/active_record/attribute_methods.rb @@ -56,7 +56,7 @@ module ActiveRecord # # => false def instance_method_already_implemented?(method_name) if dangerous_attribute_method?(method_name) - raise DangerousAttributeError, "#{method_name} is defined by ActiveRecord" + raise DangerousAttributeError, "#{method_name} is defined by Active Record" end if superclass == Base |