aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2013-02-19 15:48:22 +0100
committerXavier Noria <fxn@hashref.com>2013-02-19 17:32:32 +0100
commit2abf217d54b92b34ef2722cbfe0da62b11add94b (patch)
tree231fb9f76b25a637afa66b7c08ab937b151a06b4 /activerecord/CHANGELOG.md
parent8991083e31c507b2385e8258983261640caa32bf (diff)
downloadrails-2abf217d54b92b34ef2722cbfe0da62b11add94b.tar.gz
rails-2abf217d54b92b34ef2722cbfe0da62b11add94b.tar.bz2
rails-2abf217d54b92b34ef2722cbfe0da62b11add94b.zip
small tweaks in the AR CHANGELOG
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 3f238f69f0..193769675d 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -65,18 +65,18 @@
a_user = User.includes(:recent_comments).first
- # this is preloaded
+ # This is preloaded.
a_user.recent_comments
- # fetching the recent_comments through the posts association won't preload it.
+ # This is not preloaded, fetched now.
a_user.posts
*Yves Senn*
-* Don't run after_commit callback when creating through an association
+* Don't run `after_commit` callbacks when creating through an association
if saving the record fails.
- *James Miller *
+ *James Miller*
* Allow store accessors to be overrided like other attribute methods, e.g.: