summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2010-12-19 15:01:12 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2010-12-19 15:01:12 +0000
commit877963f54122831d9d36fbc4b41f19bd51aebb46 (patch)
treeda429b44a3b5361f6a1197ee42a09e92ceb6691e /docs
parent314fabc930a1bb361ca06e9c948bb726ad8df99a (diff)
Corrected a markup error introduced in r14986.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14988 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/forms/formsets.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/forms/formsets.txt b/docs/topics/forms/formsets.txt
index 8280c7736f..f8e306432c 100644
--- a/docs/topics/forms/formsets.txt
+++ b/docs/topics/forms/formsets.txt
@@ -47,7 +47,7 @@ the formset you iterated over the ``forms`` attribute::
Iterating over ``formset.forms`` will render the forms in the order
they were created. The default formset iterator also renders the forms
in this order, but you can change this order by providing an alternate
-implementation for the :method:`__iter__()` method.
+implementation for the :meth:`__iter__()` method.
Using initial data with a formset
---------------------------------