aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2016-07-02 18:57:08 -0700
committerGitHub <noreply@github.com>2016-07-02 18:57:08 -0700
commitd3c444fb3b450f3a11c244017e92850ff3d9f62f (patch)
tree589cb945b2adfbf85182316036ae3b3cfeee14a1 /activerecord
parent514db122cdd658b725728735a03b74264dd7bfdd (diff)
parentb7f4b8e0bfd1fefc30f7378ac1655b58b48ff5f3 (diff)
downloadrails-d3c444fb3b450f3a11c244017e92850ff3d9f62f.tar.gz
rails-d3c444fb3b450f3a11c244017e92850ff3d9f62f.tar.bz2
rails-d3c444fb3b450f3a11c244017e92850ff3d9f62f.zip
Merge pull request #25661 from will-in-wi/clarify_postgres_docs
Clarify Postgres initials. [skip ci]
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/attributes.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/attributes.rb b/activerecord/lib/active_record/attributes.rb
index 519de271c3..3211b6eaeb 100644
--- a/activerecord/lib/active_record/attributes.rb
+++ b/activerecord/lib/active_record/attributes.rb
@@ -34,10 +34,10 @@ module ActiveRecord
# is not passed, the previous default value (if any) will be used.
# Otherwise, the default will be +nil+.
#
- # +array+ (PG only) specifies that the type should be an array (see the
+ # +array+ (PostgreSQL only) specifies that the type should be an array (see the
# examples below).
#
- # +range+ (PG only) specifies that the type should be a range (see the
+ # +range+ (PostgreSQL only) specifies that the type should be a range (see the
# examples below).
#
# ==== Examples