summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJoseph Kocherhans <joseph@jkocherhans.com>2009-04-01 01:34:49 +0000
committerJoseph Kocherhans <joseph@jkocherhans.com>2009-04-01 01:34:49 +0000
commit6b2e28d96301b543040bcf55ca004f1f1c51942a (patch)
tree9c7376d09e5c4bcdcffa945f0c4f5a6406bd6ed8 /docs
parent8f6e1cdf9f04f822f1579e7691a4e83e6e0ed18e (diff)
[1.0.x] Fixed #9452. InlineModelAdmin docs now mention the right default for 'form'. Backport of r10309 from trunk. Forgot to thank patrickk. Sorry about that.
git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@10310 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/contrib/admin.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/contrib/admin.txt b/docs/ref/contrib/admin.txt
index c5f50cd8b7..7ffe09332d 100644
--- a/docs/ref/contrib/admin.txt
+++ b/docs/ref/contrib/admin.txt
@@ -733,7 +733,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.