diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-01-15 18:05:40 -0200 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-01-15 18:05:40 -0200 |
commit | 9a027d10a68f6cd7420a19fef3aa63e348a132eb (patch) | |
tree | 5555bc882567ec8f111127d2887d76e7173a4cfe /activerecord/lib | |
parent | 39f0ea1458c54e29431dbfa6332358285f44664d (diff) | |
parent | 4111de4e152d678de30afb7f87dcec9d65ab0756 (diff) | |
download | rails-9a027d10a68f6cd7420a19fef3aa63e348a132eb.tar.gz rails-9a027d10a68f6cd7420a19fef3aa63e348a132eb.tar.bz2 rails-9a027d10a68f6cd7420a19fef3aa63e348a132eb.zip |
Merge pull request #18544 from henrik/ar_type_value_comment
Tiny: Remove incorrect comment in ActiveRecord::Type::Value
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/type/value.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/type/value.rb b/activerecord/lib/active_record/type/value.rb index 60ae47db3d..859b51ca90 100644 --- a/activerecord/lib/active_record/type/value.rb +++ b/activerecord/lib/active_record/type/value.rb @@ -3,8 +3,7 @@ module ActiveRecord class Value # :nodoc: attr_reader :precision, :scale, :limit - # Valid options are +precision+, +scale+, and +limit+. They are only - # used when dumping schema. + # Valid options are +precision+, +scale+, and +limit+. def initialize(options = {}) options.assert_valid_keys(:precision, :scale, :limit) @precision = options[:precision] |