Skip to content

Commit 3e41362

Browse files
committed
Merge pull request #827 from mdpatrick/form_collection_changes
Fixing namespacing, missing semicolons in collection cookbook.
2 parents 286bcb8 + 4d32eba commit 3e41362

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cookbook/form/form_collections.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ Let's start there: suppose that each ``Task`` belongs to multiple ``Tags``
2222
objects. Start by creating a simple ``Task`` class::
2323

2424
// src/Acme/TaskBundle/Entity/Task.php
25-
namespace Acme\TaskBundle\Entity\Task
25+
namespace Acme\TaskBundle\Entity;
2626
27-
use Doctrine\Common\Collections\ArrayCollection
27+
use Doctrine\Common\Collections\ArrayCollection;
2828

2929
class Task
3030
{

0 commit comments

Comments
 (0)