summaryrefslogtreecommitdiff
path: root/docs/ref/forms/api.txt
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2016-08-17 07:27:33 -0700
committerTim Graham <timograham@gmail.com>2016-08-17 10:27:33 -0400
commit4773ed2e313c67ed9d4a77d5fe24ca7ed34172cf (patch)
treedf4386cf0e867da55e6060c2fdbb3389ac4e207d /docs/ref/forms/api.txt
parent19e20a2a3f763388bba9263d56db34012e90cf5b (diff)
Fixed incorrect doc reference to Field.initial.
Diffstat (limited to 'docs/ref/forms/api.txt')
-rw-r--r--docs/ref/forms/api.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/forms/api.txt b/docs/ref/forms/api.txt
index de66986e18..094be3a565 100644
--- a/docs/ref/forms/api.txt
+++ b/docs/ref/forms/api.txt
@@ -231,8 +231,8 @@ it's not necessary to include every field in your form. For example::
These values are only displayed for unbound forms, and they're not used as
fallback values if a particular value isn't provided.
-Note that if a :class:`~django.forms.Field` defines :attr:`~Form.initial` *and*
-you include ``initial`` when instantiating the ``Form``, then the latter
+If a :class:`~django.forms.Field` defines :attr:`~Field.initial` *and* you
+include :attr:`~Form.initial` when instantiating the ``Form``, then the latter
``initial`` will have precedence. In this example, ``initial`` is provided both
at the field level and at the form instance level, and the latter gets
precedence::