summaryrefslogtreecommitdiff
path: root/docs/topics
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2012-10-16 20:39:13 -0400
committerTim Graham <timograham@gmail.com>2012-10-16 20:39:13 -0400
commitfd02bcff4aee885d395f2439efdd522c22e40794 (patch)
tree41604ce36625447873b243a71a20a9736b559e76 /docs/topics
parentbfcda7781a886ab2b7b41937c0f49c088f58a3d7 (diff)
Fixed #18548 - Clarified note regarding reusing model instances when form validation fails.
Diffstat (limited to 'docs/topics')
-rw-r--r--docs/topics/forms/modelforms.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/forms/modelforms.txt b/docs/topics/forms/modelforms.txt
index caff03c581..692be7cd7c 100644
--- a/docs/topics/forms/modelforms.txt
+++ b/docs/topics/forms/modelforms.txt
@@ -202,7 +202,7 @@ of cleaning the model you pass to the ``ModelForm`` constructor. For instance,
calling ``is_valid()`` on your form will convert any date fields on your model
to actual date objects. If form validation fails, only some of the updates
may be applied. For this reason, you'll probably want to avoid reusing the
-model instance.
+model instance passed to the form, especially if validation fails.
The ``save()`` method