Skip to content

Commit c046a29

Browse files
committed
Update activerecord/CHANGELOG.md
Fixed markdown code indenting
1 parent dc464b9 commit c046a29

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

activerecord/CHANGELOG.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@
5252
* `ActiveRecord::Relation#inspect` now makes it clear that you are
5353
dealing with a `Relation` object rather than an array:.
5454

55-
User.where(:age => 30).inspect
56-
# => <ActiveRecord::Relation [#<User ...>, #<User ...>, ...]>
55+
User.where(:age => 30).inspect
56+
# => <ActiveRecord::Relation [#<User ...>, #<User ...>, ...]>
5757

58-
User.where(:age => 30).to_a.inspect
59-
# => [#<User ...>, #<User ...>]
58+
User.where(:age => 30).to_a.inspect
59+
# => [#<User ...>, #<User ...>]
6060

6161
The number of records displayed will be limited to 10.
6262

@@ -65,15 +65,15 @@
6565
* Add `collation` and `ctype` support to PostgreSQL. These are available for PostgreSQL 8.4 or later.
6666
Example:
6767

68-
development:
69-
adapter: postgresql
70-
host: localhost
71-
database: rails_development
72-
username: foo
73-
password: bar
74-
encoding: UTF8
75-
collation: ja_JP.UTF8
76-
ctype: ja_JP.UTF8
68+
development:
69+
adapter: postgresql
70+
host: localhost
71+
database: rails_development
72+
username: foo
73+
password: bar
74+
encoding: UTF8
75+
collation: ja_JP.UTF8
76+
ctype: ja_JP.UTF8
7777

7878
*kennyj*
7979

0 commit comments

Comments
 (0)