Skip to content

Commit e96e390

Browse files
committed
Merge branch '2.1' into 2.2
Conflicts: components/form/introduction.rst
2 parents 79cc8df + cf7db08 commit e96e390

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

components/form/introduction.rst

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ be from a normal form post or from an API.
1717
Installation
1818
------------
1919

20-
You can install the component in many different ways:
20+
You can install the component in 2 different ways:
2121

2222
* Use the official Git repository (https://github.com/symfony/Form);
23-
* Install it via Composer (``symfony/form`` on `Packagist`_).
23+
* :doc:`Install it via Composer </components/using_components>` (``symfony/form`` on `Packagist`_).
2424

2525
Configuration
2626
-------------
@@ -51,7 +51,8 @@ support for very important features:
5151
messages for submitted data.
5252

5353
The Symfony2 Form component relies on other libraries to solve these problems.
54-
Most of the time you will use Twig and the Symfony :doc:`HttpFoundation </components/http_foundation/introduction>`,
54+
Most of the time you will use Twig and the Symfony
55+
:doc:`HttpFoundation </components/http_foundation/introduction>`,
5556
Translation and Validator components, but you can replace any of these with
5657
a different library of your choice.
5758

@@ -66,8 +67,9 @@ Request Handling
6667
~~~~~~~~~~~~~~~~
6768

6869
To process form data, you'll need to grab information off of the request (typically
69-
``$_POST`` data) and pass the array of submitted data to :method:`Symfony\\Component\\Form\\Form::bind`.
70-
The Form component optionally integrates with Symfony's :doc:`HttpFoundation </components/http_foundation/introduction>`
70+
``$_POST`` data) and pass the array of submitted data to
71+
:method:`Symfony\\Component\\Form\\Form::bind`. The Form component optionally
72+
integrates with Symfony's :doc:`HttpFoundation </components/http_foundation/introduction>`
7173
component to make this even easier.
7274

7375
To integrate the HttpFoundation component, add the

0 commit comments

Comments
 (0)