From bf21d1a0f1a8cecde039e7ec7bdd9e6c9bb00edc Mon Sep 17 00:00:00 2001 From: "Hans N. Hjort" Date: Thu, 12 Jun 2014 11:43:49 +0200 Subject: [PATCH] Minor doc fix. --- src/Symfony/Component/Form/FormTypeInterface.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/Form/FormTypeInterface.php b/src/Symfony/Component/Form/FormTypeInterface.php index bcef73c6d7e0..5f6850b7cd93 100644 --- a/src/Symfony/Component/Form/FormTypeInterface.php +++ b/src/Symfony/Component/Form/FormTypeInterface.php @@ -21,7 +21,7 @@ interface FormTypeInterface /** * Builds the form. * - * This method is called for each type in the hierarchy starting form the + * This method is called for each type in the hierarchy starting from the * top most type. Type extensions can further modify the form. * * @see FormTypeExtensionInterface::buildForm() @@ -34,7 +34,7 @@ public function buildForm(FormBuilderInterface $builder, array $options); /** * Builds the form view. * - * This method is called for each type in the hierarchy starting form the + * This method is called for each type in the hierarchy starting from the * top most type. Type extensions can further modify the view. * * A view of a form is built before the views of the child forms are built. @@ -52,7 +52,7 @@ public function buildView(FormView $view, FormInterface $form, array $options); /** * Finishes 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. * * When this method is called, views of the form's children have already