Merge pull request #48024 from p8/docs/headers-active-model-types

Fix ActiveModel type headings [ci-skip]
This commit is contained in:
Petrik de Heus 2023-04-22 12:09:47 +02:00 committed by GitHub
commit f2327e8df1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 12 additions and 12 deletions

@ -4,7 +4,7 @@
module ActiveModel
module Type
# Active Model \BigInteger \Type
# = Active Model \BigInteger \Type
#
# Attribute type for integers that can be serialized to an unlimited number
# of bytes. This type is registered under the +:big_integer+ key.

@ -2,7 +2,7 @@
module ActiveModel
module Type
# Active Model \Binary \Type
# = Active Model \Binary \Type
#
# Attribute type for representation of binary data. This type is registered
# under the +:binary+ key.

@ -2,7 +2,7 @@
module ActiveModel
module Type
# Active Model \Boolean \Type
# = Active Model \Boolean \Type
#
# A class that behaves like a boolean type, including rules for coercion of
# user input.

@ -2,7 +2,7 @@
module ActiveModel
module Type
# Active Model \Date \Type
# = Active Model \Date \Type
#
# Attribute type for date representation. It is registered under the
# +:date+ key.

@ -2,7 +2,7 @@
module ActiveModel
module Type
# Active Model \DateTime \Type
# = Active Model \DateTime \Type
#
# Attribute type to represent dates and times. It is registered under the
# +:datetime+ key.

@ -4,7 +4,7 @@
module ActiveModel
module Type
# Active Model \Decimal \Type
# = Active Model \Decimal \Type
#
# Attribute type for decimal, high-precision floating point numeric
# representation. It is registered under the +:decimal+ key.

@ -4,7 +4,7 @@
module ActiveModel
module Type
# Active Model \Float \Type
# = Active Model \Float \Type
#
# Attribute type for floating point numeric values. It is registered under
# the +:float+ key.

@ -2,7 +2,7 @@
module ActiveModel
module Type
# Active Model \ImmutableString \Type
# = Active Model \ImmutableString \Type
#
# Attribute type to represent immutable strings. It casts incoming values to
# frozen strings.

@ -2,7 +2,7 @@
module ActiveModel
module Type
# Active Model \Integer \Type
# = Active Model \Integer \Type
#
# Attribute type for integer representation. This type is registered under
# the +:integer+ key.

@ -4,7 +4,7 @@
module ActiveModel
module Type
# Active Model \String \Type
# = Active Model \String \Type
#
# Attribute type for strings. It is registered under the +:string+ key.
#

@ -2,7 +2,7 @@
module ActiveModel
module Type
# Active Model \Time \Type
# = Active Model \Time \Type
#
# Attribute type for time of day representation. It is registered under the
# +:time+ key.

@ -2,7 +2,7 @@
module ActiveModel
module Type
# Active Model \Value \Type
# = Active Model \Value \Type
#
# The base class for all attribute types. This class also serves as the
# default type for attributes that do not specify a type.