From 7ab3285f64322346a763a231ddabb934102b6b50 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Sun, 14 Sep 2008 08:36:58 +0000 Subject: [PATCH] Fixed #9060: Clarified some language in the description of modelformset_factory. Thanks to gsf for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9023 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/forms/modelforms.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/topics/forms/modelforms.txt b/docs/topics/forms/modelforms.txt index b9d24034d4..ad3fe02491 100644 --- a/docs/topics/forms/modelforms.txt +++ b/docs/topics/forms/modelforms.txt @@ -411,9 +411,9 @@ working with ``ModelForm`` instances instead of ``Form`` instances:: .. note:: - ``modelformset_factory`` uses ``formset_factory`` to generate the forms - making model formsets simply an abstraction on top of formsets that knows - about models and how to interact. + ``modelformset_factory`` uses ``formset_factory`` to generate formsets. + This means that a model formset is just an extension of a basic formset + that knows how to interact with a particular model. Changing the queryset ---------------------