aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb
diff options
context:
space:
mode:
authorjbsmith86 <joel@trosic.com>2014-08-14 17:46:50 -0700
committerjbsmith86 <joel@trosic.com>2014-08-14 17:46:50 -0700
commit20f32bbc3b93ef220ad75303a403fb221a5a2fea (patch)
tree07b3028c34104cc4737b1330ba0def7c4e7e57d9 /activerecord/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb
parent4751a8c51ff4b9766dcf8324347477095b7f940d (diff)
downloadrails-20f32bbc3b93ef220ad75303a403fb221a5a2fea.tar.gz
rails-20f32bbc3b93ef220ad75303a403fb221a5a2fea.tar.bz2
rails-20f32bbc3b93ef220ad75303a403fb221a5a2fea.zip
Spelling errors
Diffstat (limited to 'activerecord/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb')
-rw-r--r--activerecord/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb b/activerecord/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb
index 34ed32ad35..380c50fc14 100644
--- a/activerecord/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb
+++ b/activerecord/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb
@@ -12,7 +12,7 @@ module ActiveRecord
# roundtripping jsonb columns. This causes some false positives for
# the comparison here. Therefore, we need to parse and re-dump the
# raw value here to ensure the insignificant whitespaces are
- # consitent with our encoder's output.
+ # consistent with our encoder's output.
raw_old_value = type_cast_for_database(type_cast_from_database(raw_old_value))
super(raw_old_value, new_value)
end