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 ---------------------------------