diff options
author | Jonathan Mazin <jonathan.mazin@gmail.com> | 2012-04-09 15:41:50 -0300 |
---|---|---|
committer | Jonathan Mazin <jonathan.mazin@gmail.com> | 2012-04-09 15:41:50 -0300 |
commit | 729890469d66eefe51d48a81789456f377dd0c07 (patch) | |
tree | 086cb95d060a5a707ec988d45df9db0f26185b35 /activemodel | |
parent | bdac19e6c8bf7b2a6c9f06e5b57116e94f9b2810 (diff) | |
download | rails-729890469d66eefe51d48a81789456f377dd0c07.tar.gz rails-729890469d66eefe51d48a81789456f377dd0c07.tar.bz2 rails-729890469d66eefe51d48a81789456f377dd0c07.zip |
Fix small markup error; fix incorrect link
Diffstat (limited to 'activemodel')
-rw-r--r-- | activemodel/README.rdoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activemodel/README.rdoc b/activemodel/README.rdoc index 4861b0a002..b989096ed5 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 @@ -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 |