aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
diff options
context:
space:
mode:
authormanish-shrivastava <er.manishshrivastava@gmail.com>2015-06-01 21:16:30 +0530
committermanish-shrivastava <er.manishshrivastava@gmail.com>2015-06-01 21:16:30 +0530
commit8145880541abf5a2454a161a80927791dec99d0b (patch)
tree9dfaa22ca0f56e4298e5246696552d11389e8a08 /activerecord/lib/active_record
parentbdfc662a1195d13e3ef78cc8e79df8a8a2e3ca97 (diff)
downloadrails-8145880541abf5a2454a161a80927791dec99d0b.tar.gz
rails-8145880541abf5a2454a161a80927791dec99d0b.tar.bz2
rails-8145880541abf5a2454a161a80927791dec99d0b.zip
Fixed typos in guide
Diffstat (limited to 'activerecord/lib/active_record')
-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 afc9383f91..87391b5dc7 100644
--- a/activerecord/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb
+++ b/activerecord/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb
@@ -9,7 +9,7 @@ module ActiveRecord
def changed_in_place?(raw_old_value, new_value)
# Postgres does not preserve insignificant whitespaces when
- # roundtripping jsonb columns. This causes some false positives for
+ # round-tripping 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
# consistent with our encoder's output.