aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorJon Moss <me@jonathanmoss.me>2017-08-06 22:24:30 -0400
committerJon Moss <me@jonathanmoss.me>2017-08-06 22:24:30 -0400
commitf6257aa014bc8bdb2cf9954dcdaa779382c5a91e (patch)
treee0fe81dabe52e2e7d987e74bf17479f2672c9309 /activerecord
parentb23a01fc36564b9cb6e32923eafb4a6a9f747ce5 (diff)
downloadrails-f6257aa014bc8bdb2cf9954dcdaa779382c5a91e.tar.gz
rails-f6257aa014bc8bdb2cf9954dcdaa779382c5a91e.tar.bz2
rails-f6257aa014bc8bdb2cf9954dcdaa779382c5a91e.zip
Lint activerecord/CHANGELOG.md
Light grammar fixes, and added a few backticks. [ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 8181d67816..c1c511a65c 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -9,7 +9,7 @@
*Sean Griffin*
-* ApplicationRecord is no longer generated when generating models. If you
+* `ApplicationRecord` is no longer generated when generating models. If you
need to generate it, it can be created with `rails g application_record`.
*Lisa Ugray*
@@ -83,7 +83,7 @@
* Fix transactions to apply state to child transactions
- Previously if you had a nested transaction and the outer transaction was rolledback the record from the
+ Previously, if you had a nested transaction and the outer transaction was rolledback, the record from the
inner transaction would still be marked as persisted.
This change fixes that by applying the state of the parent transaction to the child transaction when the
@@ -149,7 +149,7 @@
*Kir Shatrov*
-* Prevent making bind param if casted value is nil.
+* Prevent creation of bind param if casted value is nil.
*Ryuta Kamizono*
@@ -210,7 +210,7 @@
*bogdanvlviv*
-* When calling the dynamic fixture accessor method with no arguments it now returns all fixtures of this type.
+* When calling the dynamic fixture accessor method with no arguments, it now returns all fixtures of this type.
Previously this method always returned an empty array.
*Kevin McPhillips*