From 1c782de1e1b57b5b211695899ee315fcbddb47f8 Mon Sep 17 00:00:00 2001 From: Wouter J Date: Mon, 14 Jan 2013 13:32:57 +0100 Subject: [PATCH] Fixed typo, closes #2132 --- book/forms.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/forms.rst b/book/forms.rst index 2038047b0db..006bcbb0304 100644 --- a/book/forms.rst +++ b/book/forms.rst @@ -1381,7 +1381,7 @@ But sometimes, you may just want to use a form without a class, and get back an array of the submitted data. This is actually really easy:: // make sure you've imported the Request namespace above the class - use Symfony\Component\HttpFoundation\Request + use Symfony\Component\HttpFoundation\Request; // ... public function contactAction(Request $request)