aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-06-01 12:58:51 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-06-01 12:58:51 -0300
commita4cf371e11ca738255ddd13d191fd22931260070 (patch)
tree43f697956b0160182b9c9a4a21283a59ae36b260 /activerecord/lib/active_record
parentcf484e3ee3f5935e41fed1a93b2ab069d9e4f969 (diff)
parent8145880541abf5a2454a161a80927791dec99d0b (diff)
downloadrails-a4cf371e11ca738255ddd13d191fd22931260070.tar.gz
rails-a4cf371e11ca738255ddd13d191fd22931260070.tar.bz2
rails-a4cf371e11ca738255ddd13d191fd22931260070.zip
Merge pull request #20405 from manish-shrivastava/master
Fixed typos in rails 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.