Skip to content

Commit 528b4cf

Browse files
committed
Merge branch '6.2' into 6.3
* 6.2: Add missing backticks to defaults
2 parents 58c6030 + a9a1dcb commit 528b4cf

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

reference/configuration/framework.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1122,7 +1122,7 @@ Use ``0`` to not limit the duration.
11221122
max_duration
11231123
............
11241124

1125-
**type**: ``float`` **default**: 0
1125+
**type**: ``float`` **default**: ``0``
11261126

11271127
The maximum execution time, in seconds, that the request and the response are
11281128
allowed to take. A value lower than or equal to 0 means it is unlimited.

reference/constraints/Collection.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ Options
323323
``allowExtraFields``
324324
~~~~~~~~~~~~~~~~~~~~
325325

326-
**type**: ``boolean`` **default**: false
326+
**type**: ``boolean`` **default**: ``false``
327327

328328
If this option is set to ``false`` and the underlying collection contains
329329
one or more elements that are not included in the `fields`_ option, a validation
@@ -332,7 +332,7 @@ error will be returned. If set to ``true``, extra fields are OK.
332332
``allowMissingFields``
333333
~~~~~~~~~~~~~~~~~~~~~~
334334

335-
**type**: ``boolean`` **default**: false
335+
**type**: ``boolean`` **default**: ``false``
336336

337337
If this option is set to ``false`` and one or more fields from the `fields`_
338338
option are not present in the underlying collection, a validation error

reference/constraints/Count.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Options
9595
``divisibleBy``
9696
~~~~~~~~~~~~~~~
9797

98-
**type**: ``integer`` **default**: null
98+
**type**: ``integer`` **default**: ``null``
9999

100100
Validates that the number of elements of the given collection is divisible by
101101
a certain number.

reference/constraints/Regex.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ Options
159159
``htmlPattern``
160160
~~~~~~~~~~~~~~~
161161

162-
**type**: ``string|boolean`` **default**: null
162+
**type**: ``string|boolean`` **default**: ``null``
163163

164164
This option specifies the pattern to use in the HTML5 ``pattern`` attribute.
165165
You usually don't need to specify this option because by default, the constraint

reference/forms/types/options/help.rst.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
help
22
~~~~
33

4-
**type**: ``string`` or ``TranslatableInterface`` **default**: null
4+
**type**: ``string`` or ``TranslatableInterface`` **default**: ``null``
55

66
Allows you to define a help message for the form field, which by default is
77
rendered below the field::

0 commit comments

Comments
 (0)