Skip to content

Commit 3f95ef1

Browse files
committed
minor #18294 Add missing backticks to defaults (alamirault)
This PR was merged into the 5.4 branch. Discussion ---------- Add missing backticks to defaults Commits ------- 486eacc Add missing backticks to defaults
2 parents fc6b1d9 + 486eacc commit 3f95ef1

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

reference/configuration/framework.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1117,7 +1117,7 @@ Use ``0`` to not limit the duration.
11171117
max_duration
11181118
............
11191119

1120-
**type**: ``float`` **default**: 0
1120+
**type**: ``float`` **default**: ``0``
11211121

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

reference/constraints/Collection.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ Options
379379
``allowExtraFields``
380380
~~~~~~~~~~~~~~~~~~~~
381381

382-
**type**: ``boolean`` **default**: false
382+
**type**: ``boolean`` **default**: ``false``
383383

384384
If this option is set to ``false`` and the underlying collection contains
385385
one or more elements that are not included in the `fields`_ option, a validation
@@ -388,7 +388,7 @@ error will be returned. If set to ``true``, extra fields are OK.
388388
``allowMissingFields``
389389
~~~~~~~~~~~~~~~~~~~~~~
390390

391-
**type**: ``boolean`` **default**: false
391+
**type**: ``boolean`` **default**: ``false``
392392

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

reference/constraints/Count.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Options
115115
``divisibleBy``
116116
~~~~~~~~~~~~~~~
117117

118-
**type**: ``integer`` **default**: null
118+
**type**: ``integer`` **default**: ``null``
119119

120120
.. versionadded:: 5.1
121121

reference/constraints/Regex.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ Options
193193
``htmlPattern``
194194
~~~~~~~~~~~~~~~
195195

196-
**type**: ``string|boolean`` **default**: null
196+
**type**: ``string|boolean`` **default**: ``null``
197197

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
help
22
~~~~
33

4-
**type**: ``string`` or ``TranslatableMessage`` **default**: null
4+
**type**: ``string`` or ``TranslatableMessage`` **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)