aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/README.rdoc
diff options
context:
space:
mode:
authorFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-05-07 00:45:54 -0500
committerFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-05-07 00:45:54 -0500
commit79f1daf2cef87c706cdaa98398de3e5cf401e839 (patch)
tree1a74eed1d4a3b86d58c45d75e04813cd3ae8745c /activemodel/README.rdoc
parentc962680e1902d2c9474f0be8ba7b0b8ab361cae6 (diff)
downloadrails-79f1daf2cef87c706cdaa98398de3e5cf401e839.tar.gz
rails-79f1daf2cef87c706cdaa98398de3e5cf401e839.tar.bz2
rails-79f1daf2cef87c706cdaa98398de3e5cf401e839.zip
marking some active model classes
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 1485709991..b8c7846c1d 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 +ActiveModel::Dirty+ 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
+ +ActiveModel::Observers+ 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
+ +ActiveModel::Serialization+ provides a standard interface for your object
to provide +to_json+ or +to_xml+ serialization.
s = SerialPerson.new