Skip to content

Commit fee90e9

Browse files
committed
[symfony#3076] Changes for 2.3 only thanks to @pborreli
1 parent 1f85167 commit fee90e9

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

reference/constraints/GreaterThan.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,5 +93,5 @@ message
9393

9494
**type**: ``string`` **default**: ``This value should be greater than {{ compared_value }}``
9595

96-
This is the message that will be shown if the value is not greather than the
96+
This is the message that will be shown if the value is not greater than the
9797
comparison value.

reference/constraints/Isbn.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ on an object that will contain a ISBN number.
3131

3232
.. code-block:: yaml
3333
34-
# src/Acme/BookcaseBunlde/Resources/config/validation.yml
35-
Acme\BookcaseBunlde\Entity\Book:
34+
# src/Acme/BookcaseBundle/Resources/config/validation.yml
35+
Acme\BookcaseBundle\Entity\Book:
3636
properties:
3737
isbn:
3838
- Isbn:
@@ -42,7 +42,7 @@ on an object that will contain a ISBN number.
4242
4343
.. code-block:: php-annotations
4444
45-
// src/Acme/BookcaseBunlde/Entity/Book.php
45+
// src/Acme/BookcaseBundle/Entity/Book.php
4646
use Symfony\Component\Validator\Constraints as Assert;
4747
4848
class Book
@@ -59,8 +59,8 @@ on an object that will contain a ISBN number.
5959
6060
.. code-block:: xml
6161
62-
<!-- src/Acme/BookcaseBunlde/Resources/config/validation.xml -->
63-
<class name="Acme\BookcaseBunlde\Entity\Book">
62+
<!-- src/Acme/BookcaseBundle/Resources/config/validation.xml -->
63+
<class name="Acme\BookcaseBundle\Entity\Book">
6464
<property name="isbn">
6565
<constraint name="Isbn">
6666
<option name="isbn10">true</option>
@@ -72,8 +72,8 @@ on an object that will contain a ISBN number.
7272
7373
.. code-block:: php
7474
75-
// src/Acme/BookcaseBunlde/Entity/Book.php
76-
namespace Acme\BookcaseBunlde\Entity;
75+
// src/Acme/BookcaseBundle/Entity/Book.php
76+
namespace Acme\BookcaseBundle\Entity;
7777
7878
use Symfony\Component\Validator\Mapping\ClassMetadata;
7979
use Symfony\Component\Validator\Constraints as Assert;

0 commit comments

Comments
 (0)