From 877963f54122831d9d36fbc4b41f19bd51aebb46 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Sun, 19 Dec 2010 15:01:12 +0000 Subject: [PATCH] Corrected a markup error introduced in r14986. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14988 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/forms/formsets.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ---------------------------------