aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2017-08-08 18:15:46 +0900
committerRyuta Kamizono <kamipo@gmail.com>2017-08-08 18:20:44 +0900
commit6089b3140dedc087d80d67fe4c60f280db9e8d6e (patch)
tree44e55eb378a6e88bb096fe17626b29691fc9fc6e /activemodel
parent1561810f38d6200026340411e1eacafb83cb6f72 (diff)
downloadrails-6089b3140dedc087d80d67fe4c60f280db9e8d6e.tar.gz
rails-6089b3140dedc087d80d67fe4c60f280db9e8d6e.tar.bz2
rails-6089b3140dedc087d80d67fe4c60f280db9e8d6e.zip
[ci skip] Postgres --> PostgreSQL
Diffstat (limited to 'activemodel')
-rw-r--r--activemodel/lib/active_model/type/integer.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/type/integer.rb b/activemodel/lib/active_model/type/integer.rb
index d1473bd792..fe396998a3 100644
--- a/activemodel/lib/active_model/type/integer.rb
+++ b/activemodel/lib/active_model/type/integer.rb
@@ -6,7 +6,7 @@ module ActiveModel
include Helpers::Numeric
# Column storage size in bytes.
- # 4 bytes means a MySQL int or Postgres integer as opposed to smallint etc.
+ # 4 bytes means an integer as opposed to smallint etc.
DEFAULT_LIMIT = 4
def initialize(*)