From 9edffa0e40ae4bf8e06ca0185e51cec2b2440b8f Mon Sep 17 00:00:00 2001 From: XitasoChris Date: Tue, 20 Jan 2015 10:08:04 +0100 Subject: [PATCH] Typo Typo: is -> id --- cookbook/form/form_collections.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbook/form/form_collections.rst b/cookbook/form/form_collections.rst index 9793a67d357..4ea4c809f34 100644 --- a/cookbook/form/form_collections.rst +++ b/cookbook/form/form_collections.rst @@ -681,7 +681,7 @@ the relationship between the removed ``Tag`` and ``Task`` object. $task = $em->getRepository('AcmeTaskBundle:Task')->find($id); if (!$task) { - throw $this->createNotFoundException('No task found for is '.$id); + throw $this->createNotFoundException('No task found for id '.$id); } $originalTags = new ArrayCollection();