diff options
author | Robin Dupret <robin.dupret@gmail.com> | 2014-05-29 12:33:55 +0200 |
---|---|---|
committer | Robin Dupret <robin.dupret@gmail.com> | 2014-05-29 12:33:55 +0200 |
commit | c0cd7796b4c8886611a72ff7c24314e9e8ca84d4 (patch) | |
tree | d729e0416a678fc60b2da2ad1365ce83712849d4 /guides | |
parent | 3b606a32595bf3547dbe74a2304d048c2dd2f6b1 (diff) | |
parent | 29cefc1165501006020af052052d0b41f6a294cd (diff) | |
download | rails-c0cd7796b4c8886611a72ff7c24314e9e8ca84d4.tar.gz rails-c0cd7796b4c8886611a72ff7c24314e9e8ca84d4.tar.bz2 rails-c0cd7796b4c8886611a72ff7c24314e9e8ca84d4.zip |
Merge pull request #15403 from JuanitoFatas/doc/pg-guide-note
[ci skip] Make last note show up in postgresql guide.
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/active_record_postgresql.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_postgresql.md b/guides/source/active_record_postgresql.md index b69c8dbb7a..dfa488773e 100644 --- a/guides/source/active_record_postgresql.md +++ b/guides/source/active_record_postgresql.md @@ -429,5 +429,5 @@ first.archive! p Article.count # => 2 ``` -Note: This application only cares about non-archived `Articles`. A view also +NOTE: This application only cares about non-archived `Articles`. A view also allows for conditions so we can exclude the archived `Articles` directly. |