Skip to content

Commit 56e25eb

Browse files
committed
Merge pull request #1100 from jeroenvdgulik/2.0
added missing semi colon
2 parents 852f90b + 18a1e92 commit 56e25eb

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
@@ -163,10 +163,10 @@ In your controller, you'll now initialize a new instance of ``TaskType``::
163163
164164
// dummy code - this is here just so that the Task has some tags
165165
// otherwise, this isn't an interesting example
166-
$tag1 = new Tag()
166+
$tag1 = new Tag();
167167
$tag1->name = 'tag1';
168168
$task->getTags()->add($tag1);
169-
$tag2 = new Tag()
169+
$tag2 = new Tag();
170170
$tag2->name = 'tag2';
171171
$task->getTags()->add($tag2);
172172
// end dummy code

0 commit comments

Comments
 (0)