aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-07-01 14:34:47 -0300
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2012-07-02 22:34:51 -0300
commit215d41d802637520129cb7551b35faca72873143 (patch)
tree82e867489aa2e9cb17ffba56dadbdf20b910d1d1 /activerecord/CHANGELOG.md
parent65dc45ea2d0da224494b2dee800853cc29cea1f0 (diff)
downloadrails-215d41d802637520129cb7551b35faca72873143.tar.gz
rails-215d41d802637520129cb7551b35faca72873143.tar.bz2
rails-215d41d802637520129cb7551b35faca72873143.zip
Update 4.0 Release Notes with changelogs [ci skip]
Also fix some wrong formatting. Related discussion: https://github.com/rails/rails/commit/ab72040b74f742b6676b2d2a5dd029bfdca25a7a#commitcomment-1525256
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 84fffb3d17..a965fe0494 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -47,7 +47,7 @@
*Tony Schneider*
-* Allow ActiveRecord::Relation#pluck to accept multiple columns. Returns an
+* Allow `ActiveRecord::Relation#pluck` to accept multiple columns. Returns an
array of arrays containing the typecasted values:
Person.pluck(:id, :name)
@@ -88,7 +88,7 @@
*Andrew White*
-* Move HABTM validity checks to ActiveRecord::Reflection. One side effect of
+* Move HABTM validity checks to `ActiveRecord::Reflection`. One side effect of
this is to move when the exceptions are raised from the point of declaration
to when the association is built. This is consistant with other association
validity checks.
@@ -96,7 +96,7 @@
*Andrew White*
* Added `stored_attributes` hash which contains the attributes stored using
- ActiveRecord::Store. This allows you to retrieve the list of attributes
+ `ActiveRecord::Store`. This allows you to retrieve the list of attributes
you've defined.
class User < ActiveRecord::Base