@@ -168,10 +168,10 @@ helper functions:
168168That's it! Just three lines are needed to render the complete form:
169169
170170* ``form_start(form) `` - Renders the start tag of the form, including the
171- correct enctype attributes when using file uploads;
171+ correct enctype attribute when using file uploads;
172172
173- * ``form_widget(form) `` - Renders all fields, along with a label and error
174- message (if there is one) input element ;
173+ * ``form_widget(form) `` - Renders all of the fields, which includes the field
174+ element itself, a label and any validation error messages for the field ;
175175
176176* ``form_end() `` - Renders the end tag of the form and any fields that have not
177177 yet been rendered, in case you rendered each field yourself. This is useful
@@ -779,9 +779,9 @@ the other functions do?
779779 ``div `` element.
780780
781781The majority of the work is done by the ``form_row `` helper, which renders
782- the label and HTML form widget of each field inside a ``div `` tag by default.
783- In the :ref: `form-theming ` section, you'll learn how the ``form_row `` output
784- can be customized on many different levels.
782+ the label, errors and HTML form widget of each field inside a ``div `` tag by
783+ default. In the :ref: `form-theming ` section, you'll learn how the ``form_row ``
784+ output can be customized on many different levels.
785785
786786.. tip ::
787787
0 commit comments