aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/upgrading_ruby_on_rails.md
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2012-11-29 04:35:13 -0800
committerSteve Klabnik <steve@steveklabnik.com>2012-11-29 04:35:13 -0800
commit27138386ad8dbda2eb44e622515626f352fd3b22 (patch)
tree6844107e09d9e30bc726958c8073a2e11a5dbd9a /guides/source/upgrading_ruby_on_rails.md
parent0c294e0010810e3d9a4bcfa72ab96ff2af0240a6 (diff)
downloadrails-27138386ad8dbda2eb44e622515626f352fd3b22.tar.gz
rails-27138386ad8dbda2eb44e622515626f352fd3b22.tar.bz2
rails-27138386ad8dbda2eb44e622515626f352fd3b22.zip
ActiveRecord -> Active Record
The proper name, as per the documentation guides, is 'Active Record.' I've updated several references to it as 'ActiveRecord'.
Diffstat (limited to 'guides/source/upgrading_ruby_on_rails.md')
-rw-r--r--guides/source/upgrading_ruby_on_rails.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/upgrading_ruby_on_rails.md b/guides/source/upgrading_ruby_on_rails.md
index 22cda7a8df..9838e02d1a 100644
--- a/guides/source/upgrading_ruby_on_rails.md
+++ b/guides/source/upgrading_ruby_on_rails.md
@@ -45,7 +45,7 @@ Rails 4.0 has removed the identity map from Active Record, due to [some inconsis
The `delete` method in collection associations can now receive `Fixnum` or `String` arguments as record ids, besides records, pretty much like the `destroy` method does. Previously it raised `ActiveRecord::AssociationTypeMismatch` for such arguments. From Rails 4.0 on `delete` automatically tries to find the records matching the given ids before deleting them.
-Rails 4.0 has changed how orders get stacked in `ActiveRecord::Relation`. In previous versions of rails new order was applied after previous defined order. But this is no long true. Check [ActiveRecord Query guide](active_record_querying.html#ordering) for more information.
+Rails 4.0 has changed how orders get stacked in `ActiveRecord::Relation`. In previous versions of rails new order was applied after previous defined order. But this is no long true. Check [Active Record Query guide](active_record_querying.html#ordering) for more information.
Rails 4.0 has changed `serialized_attributes` and `attr_readonly` to class methods only. Now you shouldn't use instance methods, it's deprecated. You must change them, e.g. `self.serialized_attributes` to `self.class.serialized_attributes`.