aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2016-12-07 08:44:51 +0100
committerGitHub <noreply@github.com>2016-12-07 08:44:51 +0100
commitab2483c72a60755d5eeeb1d93bf26cd383c68379 (patch)
treea3b2967c440a533a9a0af3bad6e5c4c9dbbdeed7
parent09b2e29fc602cedce6dc856ffeb5f8521c089aa5 (diff)
parentb970ade2520de0ae9723ba35b6b2038991610c24 (diff)
downloadrails-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]
-rw-r--r--activemodel/lib/active_model/model.rb4
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:
#