summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorJoseph Kocherhans <joseph@jkocherhans.com>2009-04-01 01:29:30 +0000
committerJoseph Kocherhans <joseph@jkocherhans.com>2009-04-01 01:29:30 +0000
commitefd7141d70c011dd9d49c7ae5fdaa57100a6dbed (patch)
tree3f39b72dfc32cb3d12a1732817119d522a74fbee /docs/ref
parent4a44498dcfc9f817c0e0d1039af207e0de5b149c (diff)
Fixed #9452. InlineModelAdmin docs now mention the right default for 'form'.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10309 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref')
-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 4592eab862..e0a1b79b2d 100644
--- a/docs/ref/contrib/admin/index.txt
+++ b/docs/ref/contrib/admin/index.txt
@@ -887,7 +887,7 @@ many possibilities of customization. Inlines are built around
``form``
~~~~~~~~
-The value for ``form`` is inherited from ``ModelAdmin``. This is what is
+The value for ``form`` defaults to ``BaseModelForm``. This is what is
passed through to ``formset_factory`` when creating the formset for this
inline.