summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBrian Rosner <brosner@gmail.com>2008-08-08 20:27:48 +0000
committerBrian Rosner <brosner@gmail.com>2008-08-08 20:27:48 +0000
commitc49eac7d4f64c374d19aa81f2c813a4b20e4cad7 (patch)
tree0dd0e29abb54dcc03379f814270470f628034447 /docs
parent32d5c39016f7f14dfc19142d78d944d92eb9cd70 (diff)
Fixed #8069 -- Corrected the inconsistent case with BaseInlineFormset. It has been renamed to BaseInlineFormSet. Backward incompatible for anyone who used BaseInlineFormset directly.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8243 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/admin.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/admin.txt b/docs/admin.txt
index dd1abe8a94..6efef41da3 100644
--- a/docs/admin.txt
+++ b/docs/admin.txt
@@ -608,7 +608,7 @@ more than one foreign key to the same parent model.
``formset``
~~~~~~~~~~~
-This defaults to ``BaseInlineFormset``. Using your own formset can give you
+This defaults to ``BaseInlineFormSet``. Using your own formset can give you
many possibilities of customization. Inlines are built around
`model formsets`_.