aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2018-09-07 07:56:31 +0900
committerRyuta Kamizono <kamipo@gmail.com>2018-09-07 07:59:19 +0900
commit736edb982856f0de04d4566f657c0c84f145e7ef (patch)
treed8be8b8ed03001ad28c3226912306d5f426c700a /activerecord
parent0cbbe515d33d29085aefba9f04e5dd4171348a1b (diff)
downloadrails-736edb982856f0de04d4566f657c0c84f145e7ef.tar.gz
rails-736edb982856f0de04d4566f657c0c84f145e7ef.tar.bz2
rails-736edb982856f0de04d4566f657c0c84f145e7ef.zip
Formatting CHANGELOGs [ci skip]
Fixing code block rendering, indentation, backticks, etc.
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 63555de8e6..a0ab0d30bc 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -4,9 +4,9 @@
*Ryuta Kamizono*
-* ActiveRecord::Base.configurations now returns an object.
+* `ActiveRecord::Base.configurations` now returns an object.
- ActiveRecord::Base.configurations used to return a hash, but this
+ `ActiveRecord::Base.configurations` used to return a hash, but this
is an inflexible data model. In order to improve multiple-database
handling in Rails, we've changed this to return an object. Some methods
are provided to make the object behave hash-like in order to ease the
@@ -139,8 +139,8 @@
*Eddie Lebow*
-* Add ActiveRecord::Base.create_or_find_by/! to deal with the SELECT/INSERT race condition in
- ActiveRecord::Base.find_or_create_by/! by leaning on unique constraints in the database.
+* Add `ActiveRecord::Base.create_or_find_by`/`!` to deal with the SELECT/INSERT race condition in
+ `ActiveRecord::Base.find_or_create_by`/`!` by leaning on unique constraints in the database.
*DHH*