aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/README.rdoc
diff options
context:
space:
mode:
authorFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-05-07 09:49:54 -0500
committerFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-05-07 09:49:54 -0500
commitae0a4ca2e16ff055883f38abb3999b303ba3295c (patch)
tree5c7b8acb1c5b86447a437be16c16e28f7387ae20 /activemodel/README.rdoc
parentbc06e8d706fd8818d434c66f46d2e889ca24bd2d (diff)
downloadrails-ae0a4ca2e16ff055883f38abb3999b303ba3295c.tar.gz
rails-ae0a4ca2e16ff055883f38abb3999b303ba3295c.tar.bz2
rails-ae0a4ca2e16ff055883f38abb3999b303ba3295c.zip
removing the surrounding +s in active model 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 df9ca93051..1485709991 100644
--- a/activemodel/README.rdoc
+++ b/activemodel/README.rdoc
@@ -75,7 +75,7 @@ behavior out of the box:
* Tracking value changes
- The <tt>ActiveModel::Dirty</tt> 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
- <tt>ActiveModel::Observers</tt> 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
- <tt>ActiveModel::Serialization</tt> 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