Skip to content

Commit 9781582

Browse files
committed
Merge branch '2.0' into 2.1
2 parents d93958a + 52dcf11 commit 9781582

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

book/forms.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1468,7 +1468,7 @@ But sometimes, you may just want to use a form without a class, and get back
14681468
an array of the submitted data. This is actually really easy::
14691469

14701470
// make sure you've imported the Request namespace above the class
1471-
use Symfony\Component\HttpFoundation\Request
1471+
use Symfony\Component\HttpFoundation\Request;
14721472
// ...
14731473

14741474
public function contactAction(Request $request)

contributing/code/patches.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,7 @@ your contributions can be included into Symfony2 as quickly as possible:
279279
Bug fix: [yes|no]
280280
Feature addition: [yes|no]
281281
Backwards compatibility break: [yes|no]
282+
Deprecations: [what, when|no]
282283
Symfony2 tests pass: [yes|no]
283284
Fixes the following tickets: [comma separated list of tickets fixed by the PR]
284285
Todo: [list of todos pending]

cookbook/form/form_collections.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ objects. Start by creating a simple ``Task`` class::
6363
.. note::
6464

6565
The ``ArrayCollection`` is specific to Doctrine and is basically the
66-
same as using an ``array`` (but it must be an ``ArrayCollection``) if
67-
you're using Doctrine.
66+
same as using an ``array`` (but it must be an ``ArrayCollection`` if
67+
you're using Doctrine).
6868

6969
Now, create a ``Tag`` class. As you saw above, a ``Task`` can have many ``Tag``
7070
objects::

0 commit comments

Comments
 (0)