From 55d42eda3c8740d8b2e8d0a3a585c2c2e775949c Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Thu, 12 Sep 2013 20:02:00 +0200 Subject: [PATCH 1/2] remove double backtick of class directive --- components/form/introduction.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/form/introduction.rst b/components/form/introduction.rst index 28efd4ce06f..eb63b2c6f8e 100644 --- a/components/form/introduction.rst +++ b/components/form/introduction.rst @@ -81,7 +81,7 @@ to your form factory:: ->addExtension(new HttpFoundationExtension()) ->getFormFactory(); -Now, when you process a form, you can pass the :class:`Symfony\\Component\\HttpFoundation\\Request`` +Now, when you process a form, you can pass the :class:`Symfony\\Component\\HttpFoundation\\Request` object to :method:`Symfony\\Component\\Form\\Form::bind` instead of the raw array of submitted values. From 583b95f944ac0659bbb577404dfbf9fb4a51f39e Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Thu, 12 Sep 2013 20:03:40 +0200 Subject: [PATCH 2/2] add missing backslash --- components/form/introduction.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/form/introduction.rst b/components/form/introduction.rst index eb63b2c6f8e..d6af2ad8863 100644 --- a/components/form/introduction.rst +++ b/components/form/introduction.rst @@ -71,7 +71,7 @@ The Form component optionally integrates with Symfony's :doc:`HttpFoundation