Skip to content

Commit f2327e8

Browse files
authored
Merge pull request rails#48024 from p8/docs/headers-active-model-types
Fix ActiveModel type headings [ci-skip]
2 parents 0d02e5d + 5a3daa6 commit f2327e8

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

activemodel/lib/active_model/type/big_integer.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

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

activemodel/lib/active_model/type/binary.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
module ActiveModel
44
module Type
5-
# Active Model \Binary \Type
5+
# = Active Model \Binary \Type
66
#
77
# Attribute type for representation of binary data. This type is registered
88
# under the +:binary+ key.

activemodel/lib/active_model/type/boolean.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
module ActiveModel
44
module Type
5-
# Active Model \Boolean \Type
5+
# = Active Model \Boolean \Type
66
#
77
# A class that behaves like a boolean type, including rules for coercion of
88
# user input.

activemodel/lib/active_model/type/date.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
module ActiveModel
44
module Type
5-
# Active Model \Date \Type
5+
# = Active Model \Date \Type
66
#
77
# Attribute type for date representation. It is registered under the
88
# +:date+ key.

activemodel/lib/active_model/type/date_time.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
module ActiveModel
44
module Type
5-
# Active Model \DateTime \Type
5+
# = Active Model \DateTime \Type
66
#
77
# Attribute type to represent dates and times. It is registered under the
88
# +:datetime+ key.

activemodel/lib/active_model/type/decimal.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

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

activemodel/lib/active_model/type/float.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
module ActiveModel
66
module Type
7-
# Active Model \Float \Type
7+
# = Active Model \Float \Type
88
#
99
# Attribute type for floating point numeric values. It is registered under
1010
# the +:float+ key.

activemodel/lib/active_model/type/immutable_string.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
module ActiveModel
44
module Type
5-
# Active Model \ImmutableString \Type
5+
# = Active Model \ImmutableString \Type
66
#
77
# Attribute type to represent immutable strings. It casts incoming values to
88
# frozen strings.

activemodel/lib/active_model/type/integer.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
module ActiveModel
44
module Type
5-
# Active Model \Integer \Type
5+
# = Active Model \Integer \Type
66
#
77
# Attribute type for integer representation. This type is registered under
88
# the +:integer+ key.

activemodel/lib/active_model/type/string.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
module ActiveModel
66
module Type
7-
# Active Model \String \Type
7+
# = Active Model \String \Type
88
#
99
# Attribute type for strings. It is registered under the +:string+ key.
1010
#

0 commit comments

Comments
 (0)