From 9e64dd4c491228f3e867fec485d67820daa3cc24 Mon Sep 17 00:00:00 2001 From: David Joos Date: Sat, 12 Dec 2015 13:24:27 +0000 Subject: [PATCH] Fix for small typo "$mySevice" => "$myService" --- book/forms.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/forms.rst b/book/forms.rst index 996fb877453..2aab3af5d7e 100644 --- a/book/forms.rst +++ b/book/forms.rst @@ -1188,7 +1188,7 @@ type. Create a constructor to your form type to receive the service:: { private $myService; - public function __construct(MyService $mySevice) + public function __construct(MyService $myService) { $this->myService = $myService; }