aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-09-12 08:05:39 -0300
committerCarlos Antonio da Silva <carlosantoniodasilva@gmail.com>2013-09-12 08:05:39 -0300
commit423f3b8dc1b659be43cf1990d8c6b405e2904c2f (patch)
tree901adaf42c18518334f4b97d0c171d370ad53621 /activerecord
parentfe8da4060e0f0fffed744ecda16ed68a6fd2ab55 (diff)
downloadrails-423f3b8dc1b659be43cf1990d8c6b405e2904c2f.tar.gz
rails-423f3b8dc1b659be43cf1990d8c6b405e2904c2f.tar.bz2
rails-423f3b8dc1b659be43cf1990d8c6b405e2904c2f.zip
Fix typo on instance variable get call
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/persistence.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/persistence.rb b/activerecord/lib/active_record/persistence.rb
index 2f3fc7bd50..d630f31f5f 100644
--- a/activerecord/lib/active_record/persistence.rb
+++ b/activerecord/lib/active_record/persistence.rb
@@ -385,7 +385,7 @@ module ActiveRecord
@attributes.update(fresh_object.instance_variable_get('@attributes'))
@column_types = self.class.column_types
- @column_types_override = fresh_object.instance_variable_get('@columns_types_override')
+ @column_types_override = fresh_object.instance_variable_get('@column_types_override')
@attributes_cache = {}
self
end