diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-06-12 18:50:52 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-06-12 18:50:52 -0300 |
commit | 22e39f8b658c5823411f93f86f35acfd0eb226cd (patch) | |
tree | e952fd85ff070d0b5e964f48a53f6bf68888eea6 | |
parent | 04c349659bfd97f9eaf5266ef7a64b4eb367c6a8 (diff) | |
download | rails-22e39f8b658c5823411f93f86f35acfd0eb226cd.tar.gz rails-22e39f8b658c5823411f93f86f35acfd0eb226cd.tar.bz2 rails-22e39f8b658c5823411f93f86f35acfd0eb226cd.zip |
Copy-edits in 04c349659bfd97f9eaf5266ef7a64b4eb367c6a8
-rw-r--r-- | activerecord/lib/active_record/attribute_methods/serialization.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/attribute_methods/serialization.rb b/activerecord/lib/active_record/attribute_methods/serialization.rb index ede8bba922..e03bf5945d 100644 --- a/activerecord/lib/active_record/attribute_methods/serialization.rb +++ b/activerecord/lib/active_record/attribute_methods/serialization.rb @@ -11,7 +11,8 @@ module ActiveRecord # serialized object must be of that class on assignment and retrieval. # Otherwise <tt>SerializationTypeMismatch</tt> will be raised. # - # Empty objects as +{}+ in the case of +Hash+ or +[]+ in the case of +Array+ will always be persisted as null. + # Empty objects as +{}+, in the case of +Hash+, or +[]+, in the case of + # +Array+, will always be persisted as null. # # Keep in mind that database adapters handle certain serialization tasks # for you. For instance: +json+ and +jsonb+ types in PostgreSQL will be |