From 9ff5f100ddf6c77d12327a5d19c984e1d4a46b56 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Mon, 10 Jun 2013 14:36:40 -0400 Subject: [PATCH] Fixed #20578 - Typo in BaseFormSet module name --- docs/ref/contrib/formtools/form-wizard.txt | 2 +- docs/topics/forms/formsets.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/ref/contrib/formtools/form-wizard.txt b/docs/ref/contrib/formtools/form-wizard.txt index 7795a32c094..ca11aef7639 100644 --- a/docs/ref/contrib/formtools/form-wizard.txt +++ b/docs/ref/contrib/formtools/form-wizard.txt @@ -166,7 +166,7 @@ This template expects a ``wizard`` object that has various items attached to it: * ``form`` -- The :class:`~django.forms.Form` or - :class:`~django.forms.formset.BaseFormSet` instance for the current step + :class:`~django.forms.formsets.BaseFormSet` instance for the current step (either empty or with errors). * ``steps`` -- A helper object to access the various steps related data: diff --git a/docs/topics/forms/formsets.txt b/docs/topics/forms/formsets.txt index 8745e9761de..e86a14913d9 100644 --- a/docs/topics/forms/formsets.txt +++ b/docs/topics/forms/formsets.txt @@ -3,7 +3,7 @@ Formsets ======== -.. class:: django.forms.formset.BaseFormSet +.. class:: django.forms.formsets.BaseFormSet A formset is a layer of abstraction to work with multiple forms on the same page. It can be best compared to a data grid. Let's say you have the following