aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-01-31 17:48:59 -0200
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-01-31 17:48:59 -0200
commitadb8fea4936070af5a531089af25517deb4bd77c (patch)
treed582c11ddd1f12acb1c2dc6071995e04d57248ff /activerecord
parent9442c3e8830b85072d8ea2cc31fb4cac144d7649 (diff)
downloadrails-adb8fea4936070af5a531089af25517deb4bd77c.tar.gz
rails-adb8fea4936070af5a531089af25517deb4bd77c.tar.bz2
rails-adb8fea4936070af5a531089af25517deb4bd77c.zip
CHANGELOG review
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 71de20a2b9..f8931677ed 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,6 +1,6 @@
## Rails 4.0.0 (unreleased) ##
-* The DATABASE_URL environment variable now converts ints, floats, and
+* The `DATABASE_URL` environment variable now converts ints, floats, and
the strings true and false to Ruby types. For example, SQLite requires
that the timeout value is an integer, and PostgreSQL requires that the
prepared_statements option is a boolean. These now work as expected:
@@ -12,7 +12,7 @@
*Aaron Stone*
-* Relation#merge now only overwrites where values on the LHS of the
+* `Relation#merge` now only overwrites where values on the LHS of the
merge. Consider:
left = Person.where(age: [13, 14, 15])
@@ -71,7 +71,7 @@
Example:
- relation.uniq.count # => SELECT COUNT(DISTINCT *)
+ relation.uniq.count # => SELECT COUNT(DISTINCT *)
*Yves Senn + Kaspar Schiess*