aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/type/value.rb
diff options
context:
space:
mode:
authorZachary Scott <e@zzak.io>2014-06-23 10:23:11 -0700
committerZachary Scott <e@zzak.io>2014-06-23 10:23:11 -0700
commitc73f97b0ee2464a400d8b3a892de65687e883d4a (patch)
tree02d1b8c5baa5a74b859c5f1a0dda662cb41db2f9 /activerecord/lib/active_record/type/value.rb
parent936fd4c1e017ec88699b3cd7daa09847da36c731 (diff)
parente2960fb293840983ac99a8997b09b183b86b05c7 (diff)
downloadrails-c73f97b0ee2464a400d8b3a892de65687e883d4a.tar.gz
rails-c73f97b0ee2464a400d8b3a892de65687e883d4a.tar.bz2
rails-c73f97b0ee2464a400d8b3a892de65687e883d4a.zip
Merge pull request #15880 from davetoxa/patch-1
s/overriden/overridden [ci skip]
Diffstat (limited to 'activerecord/lib/active_record/type/value.rb')
-rw-r--r--activerecord/lib/active_record/type/value.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/type/value.rb b/activerecord/lib/active_record/type/value.rb
index 875fb98c4b..063139e620 100644
--- a/activerecord/lib/active_record/type/value.rb
+++ b/activerecord/lib/active_record/type/value.rb
@@ -63,7 +63,7 @@ module ActiveRecord
private
# Takes an input from the database, or from attribute setters,
# and casts it to a type appropriate for this object. This method
- # should not be overriden by subclasses. Instead, override `cast_value`.
+ # should not be overridden by subclasses. Instead, override `cast_value`.
def type_cast(value) # :api: public
cast_value(value) unless value.nil?
end