@@ -281,7 +281,7 @@ Submitting Forms with Multiple Buttons
281281
282282When your form contains more than one submit button, you will want to check
283283which of the buttons was clicked to adapt the program flow in your controller.
284- Let's add a second button with the caption "Save and add" toour form::
284+ To do this, add a second button with the caption "Save and add" toyour form::
285285
286286 $form = $this->createFormBuilder($task)
287287 ->add('task', 'text')
@@ -552,8 +552,8 @@ Groups based on the Clicked Button
552552When your form contains multiple submit buttons, you can change the validation
553553group depending on which button is used to submit the form. For example,
554554consider a form in a wizard that lets you advance to the next step or go back
555- to the previous step.Let's assumealso that when returning to the previous
556- step, the data of the form should be saved, but not validated.
555+ to the previous step.Also assume that when returning to the previous step,
556+ the data of the form should be saved, but not validated.
557557
558558First, we need to add the two buttons to the form::
559559