diff options
author | Robert Ross <robert@maintainedauto.com> | 2011-10-04 23:42:37 -0700 |
---|---|---|
committer | Robert Ross <robert@maintainedauto.com> | 2011-10-04 23:42:37 -0700 |
commit | ac49fb1aa92ac9f65e009eec2bb22f730f8c37f5 (patch) | |
tree | 5add51c4ea32d9e1062d78148943614b9f33be0d /activemodel | |
parent | eef176dc7d2d7cd5788d6b4ab37d39f0884ae334 (diff) | |
download | rails-ac49fb1aa92ac9f65e009eec2bb22f730f8c37f5.tar.gz rails-ac49fb1aa92ac9f65e009eec2bb22f730f8c37f5.tar.bz2 rails-ac49fb1aa92ac9f65e009eec2bb22f730f8c37f5.zip |
Change one more place for JSON string to Hash
Diffstat (limited to 'activemodel')
-rw-r--r-- | activemodel/lib/active_model/serializers/json.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/serializers/json.rb b/activemodel/lib/active_model/serializers/json.rb index 31a3f1e148..c845440120 100644 --- a/activemodel/lib/active_model/serializers/json.rb +++ b/activemodel/lib/active_model/serializers/json.rb @@ -42,7 +42,7 @@ module ActiveModel # The remainder of the examples in this section assume include_root_in_json is set to # <tt>false</tt>. # - # Without any +options+, the returned JSON string will include all the model's + # Without any +options+, the returned Hash will include all the model's # attributes. For example: # # user = User.find(1) |