aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorArun Agrawal <arunagw@gmail.com>2015-11-30 13:10:38 +0100
committerArun Agrawal <arunagw@gmail.com>2015-11-30 13:10:38 +0100
commit0b0f112d2ea2376b5c723c366b3cdc22ddba63d8 (patch)
tree0ee692936affc86e1150eb18a4a39eb1373bda94 /activerecord
parente57daaae6e79f43912303c52496285ddba5565f8 (diff)
parentd5007f183a977ef440d34645e12885f239f091c1 (diff)
downloadrails-0b0f112d2ea2376b5c723c366b3cdc22ddba63d8.tar.gz
rails-0b0f112d2ea2376b5c723c366b3cdc22ddba63d8.tar.bz2
rails-0b0f112d2ea2376b5c723c366b3cdc22ddba63d8.zip
Merge pull request #22452 from kamipo/fix_indentation
Fix indentation in CHANGELOG.md [ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 3724b1a387..876443550a 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -211,9 +211,9 @@
Example:
- config.generators do |g|
- g.orm :active_record, primary_key_type: :uuid
- end
+ config.generators do |g|
+ g.orm :active_record, primary_key_type: :uuid
+ end
*Jon McCartie*
@@ -289,10 +289,10 @@
To load the fixtures file `accounts.yml` as the `User` model, use:
- _fixture:
- model_class: User
- david:
- name: David
+ _fixture:
+ model_class: User
+ david:
+ name: David
Fixes #9516.