aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorSean Griffin <sean@thoughtbot.com>2014-06-02 13:42:50 -0600
committerSean Griffin <sean@thoughtbot.com>2014-06-02 13:42:50 -0600
commit9b9dec5b5f713edbe0d7556558fd0fe4216053d5 (patch)
treeb797865b3f527df630de2cc9c7cef5adb6efc92e /activerecord/lib
parentb5d53f864826c7ce88af0d8b9a9ff45f95956f6b (diff)
downloadrails-9b9dec5b5f713edbe0d7556558fd0fe4216053d5.tar.gz
rails-9b9dec5b5f713edbe0d7556558fd0fe4216053d5.tar.bz2
rails-9b9dec5b5f713edbe0d7556558fd0fe4216053d5.zip
Add missing colon to internal
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/properties.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/properties.rb b/activerecord/lib/active_record/properties.rb
index e70f84808d..5fd51e09fa 100644
--- a/activerecord/lib/active_record/properties.rb
+++ b/activerecord/lib/active_record/properties.rb
@@ -5,7 +5,7 @@ module ActiveRecord
Type = ActiveRecord::Type
included do
- class_attribute :user_provided_columns, instance_accessor: false # :internal
+ class_attribute :user_provided_columns, instance_accessor: false # :internal:
self.user_provided_columns = {}
end