Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 957bca4

Browse files
committed
Merge branch '2.3'
2 parents ae03fdb + fee90e9 commit 957bca4

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

contributing/documentation/standards.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ look and feel familiar, you should follow these standards.
77
Sphinx
88
------
99

10-
* The following characters are choosen for different heading levels: level 1
10+
* The following characters are chosen for different heading levels: level 1
1111
is ``=``, level 2 ``-``, level 3 ``~``, level 4 ``.`` and level 5 ``"``;
1212
* Each line should break approximately after the first word that crosses the
1313
72nd character (so most lines end up being 72-78 characters);
1414
* The ``::`` shorthand is *preferred* over ``.. code-block:: php`` to begin a PHP
1515
code block (read `the Sphinx documentation`_ to see when you should use the
1616
shorthand);
17-
* Inline hyperlinks are **not** used. Seperate the link and their target
17+
* Inline hyperlinks are **not** used. Separate the link and their target
1818
definition, which you add on the bottom of the page;
1919
* You should use a form of *you* instead of *we*.
2020

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;

reference/constraints/Url.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Basic Usage
6262
// src/Acme/BlogBundle/Entity/Author.php
6363
namespace Acme\BlogBundle\Entity;
6464
65-
use Symfomy\Component\Validator\Mapping\ClassMetadata;
65+
use Symfony\Component\Validator\Mapping\ClassMetadata;
6666
use Symfony\Component\Validator\Constraints as Assert;
6767
6868
class Author

reference/forms/types/entity.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ These options inherit from the :doc:`choice </reference/forms/types/choice>` typ
152152
.. note::
153153

154154
If you are working with a collection of Doctrine entities, it will be helpful
155-
to read the documention for the :doc:`/reference/forms/types/collection`
155+
to read the documentation for the :doc:`/reference/forms/types/collection`
156156
as well. In addition, there is a complete example in the cookbook article
157157
:doc:`/cookbook/form/form_collections`.
158158

0 commit comments

Comments
 (0)