aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/README.rdoc
diff options
context:
space:
mode:
authorFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-05-07 00:48:19 -0500
committerFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-05-07 00:48:19 -0500
commit204a79fe61051dac19ac854f22f22ca4288162b8 (patch)
tree1ffc2447b25c376332814056fa35f297a85c67f4 /activemodel/README.rdoc
parent79f1daf2cef87c706cdaa98398de3e5cf401e839 (diff)
downloadrails-204a79fe61051dac19ac854f22f22ca4288162b8.tar.gz
rails-204a79fe61051dac19ac854f22f22ca4288162b8.tar.bz2
rails-204a79fe61051dac19ac854f22f22ca4288162b8.zip
fixing marked actived model classes in readme
Diffstat (limited to 'activemodel/README.rdoc')
-rw-r--r--activemodel/README.rdoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/activemodel/README.rdoc b/activemodel/README.rdoc
index b8c7846c1d..df9ca93051 100644
--- a/activemodel/README.rdoc
+++ b/activemodel/README.rdoc
@@ -75,7 +75,7 @@ behavior out of the box:
* Tracking value changes
- The +ActiveModel::Dirty+ module allows for tracking attribute changes:
+ The <tt>ActiveModel::Dirty</tt> module allows for tracking attribute changes:
person = Person.new
person.name # => nil
@@ -131,7 +131,7 @@ behavior out of the box:
* Observer support
- +ActiveModel::Observers+ allows your object to implement the Observer
+ <tt>ActiveModel::Observers</tt> allows your object to implement the Observer
pattern in a Rails App and take advantage of all the standard observer
functions.
@@ -149,7 +149,7 @@ behavior out of the box:
* Making objects serializable
- +ActiveModel::Serialization+ provides a standard interface for your object
+ <tt>ActiveModel::Serialization</tt> provides a standard interface for your object
to provide +to_json+ or +to_xml+ serialization.
s = SerialPerson.new