summaryrefslogtreecommitdiff
path: root/docs/topics
diff options
context:
space:
mode:
authorwrwrwr <git@wr.waw.pl>2014-11-27 16:21:28 +0100
committerTim Graham <timograham@gmail.com>2014-11-27 10:53:06 -0500
commita15aba66f2fc650f70a791fb7fa880cf85cb1229 (patch)
tree8db441d82b89e567b330b352c3912c39222f470f /docs/topics
parent093e6c68b9b5afdf1f059a2321affc999763e919 (diff)
Fixed typo in docs/topics/forms/modelforms.txt.
Diffstat (limited to 'docs/topics')
-rw-r--r--docs/topics/forms/modelforms.txt7
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/topics/forms/modelforms.txt b/docs/topics/forms/modelforms.txt
index f457361b6c..bfc066d251 100644
--- a/docs/topics/forms/modelforms.txt
+++ b/docs/topics/forms/modelforms.txt
@@ -485,10 +485,9 @@ To specify a custom widget for a field, use the ``widgets`` attribute of the
inner ``Meta`` class. This should be a dictionary mapping field names to widget
classes or instances.
-For example, if you want the a ``CharField`` for the ``name``
-attribute of ``Author`` to be represented by a ``<textarea>`` instead
-of its default ``<input type="text">``, you can override the field's
-widget::
+For example, if you want the ``CharField`` for the ``name`` attribute of
+``Author`` to be represented by a ``<textarea>`` instead of its default
+``<input type="text">``, you can override the field's widget::
from django.forms import ModelForm, Textarea
from myapp.models import Author