aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/3_0_release_notes.md
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-04-30 17:59:12 +0200
committerYves Senn <yves.senn@gmail.com>2013-04-30 17:59:12 +0200
commitd2fe72345aeea2a0874dfe5c665368b9fd543bcb (patch)
tree7eb7c9399107c7fa1ba53443b5f664fb537b3353 /guides/source/3_0_release_notes.md
parent887225e69b6cdd27f00cf043c4ac918ca5e18cbf (diff)
downloadrails-d2fe72345aeea2a0874dfe5c665368b9fd543bcb.tar.gz
rails-d2fe72345aeea2a0874dfe5c665368b9fd543bcb.tar.bz2
rails-d2fe72345aeea2a0874dfe5c665368b9fd543bcb.zip
it's Active Record not ActiveRecord
/cc @fxn
Diffstat (limited to 'guides/source/3_0_release_notes.md')
-rw-r--r--guides/source/3_0_release_notes.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/3_0_release_notes.md b/guides/source/3_0_release_notes.md
index 6cb6f738e0..e7a174cc77 100644
--- a/guides/source/3_0_release_notes.md
+++ b/guides/source/3_0_release_notes.md
@@ -475,7 +475,7 @@ As well as the following deprecations:
* `named_scope` in an Active Record class is deprecated and has been renamed to just `scope`.
* In `scope` methods, you should move to using the relation methods, instead of a `:conditions => {}` finder method, for example `scope :since, lambda {|time| where("created_at > ?", time) }`.
* `save(false)` is deprecated, in favor of `save(:validate => false)`.
-* I18n error messages for ActiveRecord should be changed from :en.activerecord.errors.template to `:en.errors.template`.
+* I18n error messages for Active Record should be changed from :en.activerecord.errors.template to `:en.errors.template`.
* `model.errors.on` is deprecated in favor of `model.errors[]`
* validates_presence_of => validates... :presence => true
* `ActiveRecord::Base.colorize_logging` and `config.active_record.colorize_logging` are deprecated in favor of `Rails::LogSubscriber.colorize_logging` or `config.colorize_logging`