File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ specifying the following attributes to customize form rendering:
83
83
84
84
For example, to customize the ``BoundField`` of a ``Form`` class::
85
85
86
- from django.forms import Form
86
+ from django import forms
87
87
88
88
89
89
class CustomBoundField(forms.BoundField):
@@ -273,7 +273,7 @@ Forms
273
273
``BoundField`` to ease use of this HTML attribute in templates.
274
274
275
275
* To improve accessibility for screen reader users ``aria-describedby`` is used
276
- to associated form fields with their error messages. See
276
+ to associate form fields with their error messages. See
277
277
:ref:`how form errors are displayed <form-error-display>` for details.
278
278
279
279
* The new asset object :class:`~django.forms.Script` is available for adding
@@ -306,7 +306,7 @@ Models
306
306
307
307
* The ``SELECT`` clause generated when using :meth:`.QuerySet.values` and
308
308
:meth:`.QuerySet.values_list` now matches the specified order of the
309
- referenced expressions. Previously, the order was based of a set of
309
+ referenced expressions. Previously, the order was based on a set of
310
310
counterintuitive rules which made query combination through methods such as
311
311
:meth:`.QuerySet.union` unpredictable.
312
312
You can’t perform that action at this time.
0 commit comments