diff options
author | Oscar Del Ben <info@oscardelben.com> | 2012-04-27 14:21:16 +0200 |
---|---|---|
committer | Oscar Del Ben <info@oscardelben.com> | 2012-04-27 14:21:16 +0200 |
commit | fc3d15dcb0c4265d1aaeedfc51d8a8c8e382347a (patch) | |
tree | 05fc3bc5c7df89712f1f11e7f94306100265e74f /activemodel | |
parent | f4447607f20c420d9c341b19064c07d5b7aa6cee (diff) | |
parent | 39574aa582337baa32a58caae7b2671cb52ae718 (diff) | |
download | rails-fc3d15dcb0c4265d1aaeedfc51d8a8c8e382347a.tar.gz rails-fc3d15dcb0c4265d1aaeedfc51d8a8c8e382347a.tar.bz2 rails-fc3d15dcb0c4265d1aaeedfc51d8a8c8e382347a.zip |
Merge branch 'master' of github.com:lifo/docrails
Diffstat (limited to 'activemodel')
-rw-r--r-- | activemodel/lib/active_model/serialization.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/serialization.rb b/activemodel/lib/active_model/serialization.rb index a5828476b1..4403ef060b 100644 --- a/activemodel/lib/active_model/serialization.rb +++ b/activemodel/lib/active_model/serialization.rb @@ -34,7 +34,7 @@ module ActiveModel # # Most of the time though, you will want to include the JSON or XML # serializations. Both of these modules automatically include the - # +ActiveModel::Serialization+ module, so there is no need to explicitly + # <tt>ActiveModel::Serialization</tt> module, so there is no need to explicitly # include it. # # A minimal implementation including XML and JSON would be: |