Skip to content

Commit d6a146f

Browse files
author
mgiagnoni
committed
Reworded to use the same verb tense for each element of the list
1 parent f5004f2 commit d6a146f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

book/forms.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -462,16 +462,16 @@ Let's take a look at each part:
462462
* ``form_enctype(form)`` - If at least one field is a file upload field, this
463463
renders the obligatory ``enctype="multipart/form-data"``;
464464

465-
* ``form_errors(form)`` - This will render any errors global to the whole form
465+
* ``form_errors(form)`` - Renders any errors global to the whole form
466466
(field-specific errors are displayed next to each field);
467467

468468
* ``form_row(form.price)`` - Renders the label, any errors, and the HTML
469469
form widget for the given field (e.g. ``price``);
470470

471-
* ``form_rest(form)`` - This renders any fields that have not yet been rendered
472-
and is usually a good idea to place at the bottom of each form (in case
473-
you forgot to output a field or don't want to bother manually rendering
474-
hidden fields).
471+
* ``form_rest(form)`` - Renders any fields that have not yet been rendered.
472+
It's usually a good idea to place a call to this helper at the bottom of
473+
each form (in case you forgot to output a field or don't want to bother
474+
manually rendering hidden fields).
475475

476476
The majority of the work is done by the ``form_row`` helper, which renders
477477
the label, errors and HTML form widget of each field inside a ``div`` tag

0 commit comments

Comments
 (0)