Skip to content

Commit 99dc499

Browse files
xabbuhchancegarcia
authored andcommitted
[symfony#6597] some tweaks
1 parent d3cde84 commit 99dc499

File tree

7 files changed

+18
-13
lines changed

7 files changed

+18
-13
lines changed

reference/constraints/GreaterThan.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ Basic Usage
2525
-----------
2626

2727
The following constraints ensure that:
28-
- the number of ``siblings`` of a ``Person`` is greater than ``5``
29-
- the ``age`` of a ``Person`` class is greater than ``18``
3028

29+
* the number of ``siblings`` of a ``Person`` is greater than ``5``
30+
* the ``age`` of a ``Person`` class is greater than ``18``
3131

3232
.. configuration-block::
3333

reference/constraints/GreaterThanOrEqual.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@ Basic Usage
2424
-----------
2525

2626
The following constraints ensure that:
27-
- the number of ``siblings`` of a ``Person`` is greater than or equal to ``5``
28-
- the ``age`` of a ``Person`` class is greater than or equal to ``18``
27+
28+
* the number of ``siblings`` of a ``Person`` is greater than or equal to ``5``
29+
* the ``age`` of a ``Person`` class is greater than or equal to ``18``
2930

3031
.. configuration-block::
3132

reference/constraints/IdenticalTo.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@ Basic Usage
3030
-----------
3131

3232
The following constraints ensure that:
33-
- ``firstName`` of ``Person` class is equal to ``Mary`` *and* is a string
34-
- ``age`` is equal to``20`` *and* is of type integer
33+
34+
* ``firstName`` of ``Person` class is equal to ``Mary`` *and* is a string
35+
* ``age`` is equal to``20`` *and* is of type integer
3536

3637
.. configuration-block::
3738

reference/constraints/LessThan.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ Basic Usage
2525
-----------
2626

2727
The following constraints ensure that:
28-
- the number of ``siblings`` of a ``Person`` is less than or equal to ``5``
29-
- ``age`` is less than``80``
28+
29+
* the number of ``siblings`` of a ``Person`` is less than or equal to ``5``
30+
* ``age`` is less than``80``
3031

3132
.. configuration-block::
3233

reference/constraints/LessThanOrEqual.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@ Basic Usage
2424
-----------
2525

2626
The following constraints ensure that:
27-
- the number of ``siblings`` of a ``Person`` is less than or equal to ``5``
28-
- the ``age`` is less than or equal to ``80``
27+
28+
* the number of ``siblings`` of a ``Person`` is less than or equal to ``5``
29+
* the ``age`` is less than or equal to ``80``
2930

3031
.. configuration-block::
3132

reference/constraints/NotEqualTo.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ options. To force that a value is equal, see
2828

2929
Basic Usage
3030
-----------
31+
3132
If you want to ensure that the ``firstName`` of a ``Person`` is not equal to
3233
``Mary`` and that the ``age`` of a ``Person`` class is not ``15``, you could do
3334
the following:
3435

35-
3636
.. configuration-block::
3737

3838
.. code-block:: php-annotations

reference/constraints/NotIdenticalTo.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@ Basic Usage
3030
-----------
3131

3232
The following constraints ensure that:
33-
- ``firstName`` of ``Person`` is not equal to ``Mary`` *or* not of the same type
34-
- ``age`` of ``Person`` class is not equal to ``15`` *or* not of the same type
33+
34+
* ``firstName`` of ``Person`` is not equal to ``Mary`` *or* not of the same type
35+
* ``age`` of ``Person`` class is not equal to ``15`` *or* not of the same type
3536

3637
.. configuration-block::
3738

0 commit comments

Comments
 (0)