diff options
author | Kasper Timm Hansen <kaspth@gmail.com> | 2016-12-07 08:44:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-07 08:44:51 +0100 |
commit | ab2483c72a60755d5eeeb1d93bf26cd383c68379 (patch) | |
tree | a3b2967c440a533a9a0af3bad6e5c4c9dbbdeed7 /activemodel | |
parent | 09b2e29fc602cedce6dc856ffeb5f8521c089aa5 (diff) | |
parent | b970ade2520de0ae9723ba35b6b2038991610c24 (diff) | |
download | rails-ab2483c72a60755d5eeeb1d93bf26cd383c68379.tar.gz rails-ab2483c72a60755d5eeeb1d93bf26cd383c68379.tar.bz2 rails-ab2483c72a60755d5eeeb1d93bf26cd383c68379.zip |
Merge pull request #27290 from lastgabs/active-model-docs
Fix ActiveModel::Model API documentation [ci skip]
Diffstat (limited to 'activemodel')
-rw-r--r-- | activemodel/lib/active_model/model.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activemodel/lib/active_model/model.rb b/activemodel/lib/active_model/model.rb index e683050787..945a5402a3 100644 --- a/activemodel/lib/active_model/model.rb +++ b/activemodel/lib/active_model/model.rb @@ -2,10 +2,10 @@ module ActiveModel # == Active \Model \Basic \Model # # Includes the required interface for an object to interact with - # <tt>ActionPack</tt>, using different <tt>ActiveModel</tt> modules. + # Action Pack and Action View, using different Active Model modules. # It includes model name introspections, conversions, translations and # validations. Besides that, it allows you to initialize the object with a - # hash of attributes, pretty much like <tt>ActiveRecord</tt> does. + # hash of attributes, pretty much like Active Record does. # # A minimal implementation could be: # |