1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #27290 from lastgabs/active-model-docs

Fix ActiveModel::Model API documentation [ci skip]
This commit is contained in:
Kasper Timm Hansen 2016-12-07 08:44:51 +01:00 committed by GitHub
commit ab2483c72a

View file

@ -2,10 +2,10 @@ module ActiveModel
# == Active \Model \Basic \Model # == Active \Model \Basic \Model
# #
# Includes the required interface for an object to interact with # 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 # It includes model name introspections, conversions, translations and
# validations. Besides that, it allows you to initialize the object with a # 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: # A minimal implementation could be:
# #