From e88ecbbbfdb2ae39f7ee1632d8f037733afc683d Mon Sep 17 00:00:00 2001 From: Pierre-Yves LEBECQ Date: Sat, 13 Aug 2011 13:43:13 +0200 Subject: [PATCH] [Form] Fixed a typo in AbstractType phpdoc --- src/Symfony/Component/Form/AbstractType.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/Form/AbstractType.php b/src/Symfony/Component/Form/AbstractType.php index bc5c3cd5bcd9..eb7ee6ea844d 100644 --- a/src/Symfony/Component/Form/AbstractType.php +++ b/src/Symfony/Component/Form/AbstractType.php @@ -24,7 +24,7 @@ abstract class AbstractType implements FormTypeInterface /** * Builds the form. * - * This method gets called for each type in the hierarchy starting form the + * This method gets called for each type in the hierarchy starting from the * top most type. * Type extensions can further modify the form. * @@ -40,7 +40,7 @@ public function buildForm(FormBuilder $builder, array $options) /** * Builds the form view. * - * This method gets called for each type in the hierarchy starting form the + * This method gets called for each type in the hierarchy starting from the * top most type. * Type extensions can further modify the view. * @@ -56,7 +56,7 @@ public function buildView(FormView $view, FormInterface $form) /** * Builds the form view. * - * This method gets called for each type in the hierarchy starting form the + * This method gets called for each type in the hierarchy starting from the * top most type. * Type extensions can further modify the view. *