summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2010-05-10 13:25:44 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2010-05-10 13:25:44 +0000
commita85837482800177b9fd760207ff0b0c590d53eff (patch)
tree184cbced57baf15407c140adbeea560d53059dc3
parent5a43a33161d1ff0bca573f277058803ce687449b (diff)
downloaddjango-a85837482800177b9fd760207ff0b0c590d53eff.tar.gz
[1.1.X] Fixed #13002 -- Corrected description of the default form base class in InlineModelAdmin classes. Thanks to stijn@typograaf.be for the report, and timo for the patch.
Backport of r13209 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.1.X@13214 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--docs/ref/contrib/admin/index.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt
index 251f85547f..ad38b2720d 100644
--- a/docs/ref/contrib/admin/index.txt
+++ b/docs/ref/contrib/admin/index.txt
@@ -993,7 +993,7 @@ many possibilities of customization. Inlines are built around
``form``
~~~~~~~~
-The value for ``form`` defaults to ``BaseModelForm``. This is what is
+The value for ``form`` defaults to ``ModelForm``. This is what is
passed through to ``inlineformset_factory`` when creating the formset for this
inline.