diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2012-04-12 21:44:11 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2012-04-12 21:44:11 +0530 |
commit | 8248f4202d67a781bd3da88fc9412bc7264bbb7b (patch) | |
tree | 15af5b14ae2969780fb1ae74b097ab889e10ad86 /activemodel | |
parent | 6cab7602bb53464f625968d233530f6982841629 (diff) | |
parent | 05ac3921f85663416fe8a4287b05db3284276b24 (diff) | |
download | rails-8248f4202d67a781bd3da88fc9412bc7264bbb7b.tar.gz rails-8248f4202d67a781bd3da88fc9412bc7264bbb7b.tar.bz2 rails-8248f4202d67a781bd3da88fc9412bc7264bbb7b.zip |
Merge branch 'master' of github.com:lifo/docrails
Diffstat (limited to 'activemodel')
-rw-r--r-- | activemodel/README.rdoc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/activemodel/README.rdoc b/activemodel/README.rdoc index 4861b0a002..7d13a0123b 100644 --- a/activemodel/README.rdoc +++ b/activemodel/README.rdoc @@ -14,7 +14,7 @@ Model solves this by defining an explicit API. You can read more about the API in ActiveModel::Lint::Tests. Active Model provides a default module that implements the basic API required -to integrate with Action Pack out of the box: +ActiveModel::Model+. +to integrate with Action Pack out of the box: <tt>ActiveModel::Model</tt>. class Person include ActiveModel::Model @@ -30,7 +30,7 @@ to integrate with Action Pack out of the box: +ActiveModel::Model+. It includes model name introspections, conversions, translations and validations, resulting in a class suitable to be used with Action Pack. -See +ActiveModel::Model+ for more examples. +See <tt>ActiveModel::Model</tt> for more examples. Active Model also provides the following functionality to have ORM-like behavior out of the box: @@ -71,7 +71,7 @@ behavior out of the box: This generates +before_create+, +around_create+ and +after_create+ class methods that wrap your create method. - {Learn more}[link:classes/ActiveModel/CallBacks.html] + {Learn more}[link:classes/ActiveModel/Callbacks.html] * Tracking value changes |